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 double ConvertmTorrToPa(double value) 
        {
            return value * 0.1333D;
        }
        /// 
        /// 单位Pa转mTorr
        /// 
        /// 
        /// 
        public static double ConvertPaTomtorr(double value)
        {
            return value * 7.5006D;
        }
    }
}