| 12345678910111213141516171819202122232425262728293031 | 
							- using System;
 
- using System.Collections.Generic;
 
- using System.Linq;
 
- using System.Text;
 
- using System.Threading.Tasks;
 
- namespace Venus_Core
 
- {
 
-     public class ConvertPressureUnit
 
-     {
 
-         /// <summary>
 
-         /// 单位mTorr转Pa
 
-         /// </summary>
 
-         /// <param name="value"></param>
 
-         /// <returns></returns>
 
-         public static float ConvertmTorrToPa(float value) 
 
-         {
 
-             return value * 0.1333F;
 
-         }
 
-         /// <summary>
 
-         /// 单位Pa转mTorr
 
-         /// </summary>
 
-         /// <param name="value"></param>
 
-         /// <returns></returns>
 
-         public static float ConvertPaTomtorr(float value)
 
-         {
 
-             return value * 7.5006F;
 
-         }
 
-     }
 
- }
 
 
  |