using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MECF.Framework.RT.EquipmentLibrary.HardwareUnits.MfcCalculation { public class DataFlow { public string Name { get;set; } public double RunFeedBack { get;set; } public double VentFeedBack { get; set; } private double molarWeight; public double MolarWeight { get { return RunFeedBack / 1000 / 22.4141; } set { molarWeight = value; } } public double RunVolume { get; set; } public double VentVolume { get; set; } } }