Changes required for 'Zapiska'.
This commit is contained in:
parent
7c1b713780
commit
40a43e46b4
@ -66,6 +66,7 @@ namespace TBF.BenchControl
|
||||
Factories.Add(new Elde.Valve.ValveFactory());
|
||||
Factories.Add(new Elde.ValveEx.ValveFactory());
|
||||
Factories.Add(new WaterMeters.WaterMeter.WaterMeterFactory()); /// WaterMeter
|
||||
Factories.Add(new ResultsPrinters.Zapiska.PrinterFactory()); /// Zapiska
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
@ -93,6 +93,8 @@ namespace TBF.Forms
|
||||
(x, y, z) => x.TestResult.ErrLimLo.ToString("F1")));
|
||||
AllItems.Add(new ResultItemSpec("Error limit Hi", "Err.Lim.Hi [%]", x => x.TestResult.ErrLimHi.ToString("F1"),
|
||||
(x, y, z) => x.TestResult.ErrLimHi.ToString("F1")));
|
||||
AllItems.Add(new ResultItemSpec("Error limit sum", "Err.Lim.Sum [%]", x => (x.TestResult.ErrLimHi - x.TestResult.ErrLimLo).ToString("F1"),
|
||||
(x, y, z) => (x.TestResult.ErrLimHi - x.TestResult.ErrLimLo).ToString("F1")));
|
||||
|
||||
/// Test results
|
||||
AllItems.Add(new ResultItemSpec("Start time", "T start", x => x.TestResult.TimeStart.ToShortTimeString(),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user