using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Xylem.Common.Hardware.WaterMeter.DataPackages.MeasurementRecords
{
public class FlowDeviations
{
///
/// Flowrate for setting up the Pumps on bench
///
public Double RequierdFlowQmPerH { get; set; }
///
/// how long the flow should last
///
public Double RequierdTimeS { get; set; }
///
/// Corrected measurement of flowrate from Refrence meter
///
public Double MeasuredRefFlowQmPerH { get; set; }
///
/// how long the mesurement was running
///
public Double RefTimeS { get; set; }
///
/// Measurement of flowrate from DUT
///
public Double MeasuredDutFlowQmPerH { get; set; }
///
/// how long the mesurement was running for DUT
///
public Double DutTimeS { get; set; }
}
}