12345678910111213141516171819202122232425262728293031 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Venus_Core
- {
- public class ConvertPressureUnit
- {
-
-
-
-
-
- public static double ConvertmTorrToPa(double value)
- {
- return value * 0.1333D;
- }
-
-
-
-
-
- public static double ConvertPaTomtorr(double value)
- {
- return value * 7.5006D;
- }
- }
- }
|