using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Venus_Core
{
    public class ConvertPressureUnit
    {
        /// 
        /// 单位mTorr转Pa
        /// 
        /// 
        /// 
        public static float ConvertmTorrToPa(float value) 
        {
            return value * 0.1333F;
        }
        /// 
        /// 单位Pa转mTorr
        /// 
        /// 
        /// 
        public static float ConvertPaTomtorr(float value)
        {
            return value * 7.5006F;
        }
    }
}