Buoyancy parameters added to the UI: Metrology tabs, BalanceCfg, BalanceDev.

This commit is contained in:
Milan Hanajik
2016-04-25 12:28:21 +02:00
parent ca2705421b
commit df58d05b84
12 changed files with 377 additions and 157 deletions
@@ -42,6 +42,9 @@ namespace TBF.BenchControl.GenericDevices
/// </summary>
int EmptyTimeSec { get; }
float BuoyancyTemp { get; } ///
float BuoyancyPress { get; } /// Displayed in Metrology tab page
float BuoyancyHumi { get; } ///
/// <summary>
/// Measurement correction table
@@ -0,0 +1,16 @@
///
/// Copyright (c) 2013-2016 Sensus Metering Systems
///
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IBalanceCfg : IComponentCfg
{
/// Parameters displayed in Metrology tab page
float BuoyancyTemp { get; set; }
float BuoyancyPress { get; set; }
float BuoyancyHumi { get; set; }
}
}