Buoyancy parameters added to the UI: Metrology tabs, BalanceCfg, BalanceDev.
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user