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