2014-07-28 07:54:35 +00:00
|
|
|
|
using System;
|
2014-08-01 06:36:17 +00:00
|
|
|
|
using TBF.Boxes;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
namespace TBF.UiBridge
|
|
|
|
|
|
{
|
|
|
|
|
|
public class TestProgressEventArgs : EventArgs
|
|
|
|
|
|
{
|
2014-07-31 15:04:09 +00:00
|
|
|
|
public float Progress;
|
|
|
|
|
|
public float OveralProgress;
|
|
|
|
|
|
|
2014-09-09 11:06:10 +00:00
|
|
|
|
public int RefPulses; /// Reference pulses count since the test start
|
|
|
|
|
|
public FloatBox RegValvePos; /// Current regulation valve position in [%] (0 .. 100.0)
|
|
|
|
|
|
public FloatBox FlowMtrFreq; /// Current reference flowmeter frequency in [Hz] (0 .. 2000.0 in case within range)
|
|
|
|
|
|
public FloatBox Flow; /// Current flow in [m3/h]
|
|
|
|
|
|
public FloatBox Volume; ///
|
2014-07-28 07:54:35 +00:00
|
|
|
|
public float Time;
|
2014-08-01 06:36:17 +00:00
|
|
|
|
public FloatBox Mass;
|
|
|
|
|
|
public FloatBox StartMass;
|
2014-12-11 21:35:16 +00:00
|
|
|
|
public bool PumpOn;
|
|
|
|
|
|
public bool DivToTank;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
2014-08-01 06:36:17 +00:00
|
|
|
|
public FloatBox Tin;
|
|
|
|
|
|
public FloatBox Tout;
|
|
|
|
|
|
public FloatBox Tdiv;
|
|
|
|
|
|
public FloatBox Pin;
|
|
|
|
|
|
public FloatBox Pout;
|
|
|
|
|
|
public FloatBox AmbientTemp;
|
|
|
|
|
|
public FloatBox AmbientPressure;
|
|
|
|
|
|
public FloatBox AmbientHumidity;
|
2014-07-28 07:54:35 +00:00
|
|
|
|
|
|
|
|
|
|
public int[] WmPulses = new int[Program.WMsCount];
|
|
|
|
|
|
public int[] WmRefPulses = new int[Program.WMsCount];
|
|
|
|
|
|
public float[] WmVolume = new float[Program.WMsCount];
|
|
|
|
|
|
public float[] WmErrPct = new float[Program.WMsCount];
|
|
|
|
|
|
|
|
|
|
|
|
public Entities.TestResult TestResult;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|