2016-04-25 10:28:21 +00:00
|
|
|
///
|
|
|
|
|
/// Copyright (c) 2013-2016 Sensus Metering Systems
|
|
|
|
|
///
|
2016-04-25 13:25:23 +00:00
|
|
|
using System;
|
2016-04-25 10:28:21 +00:00
|
|
|
using TBF.BenchControl.Generic;
|
|
|
|
|
|
|
|
|
|
namespace TBF.BenchControl.GenericDevices
|
|
|
|
|
{
|
|
|
|
|
public interface IBalanceCfg : IComponentCfg
|
|
|
|
|
{
|
2016-04-25 13:25:23 +00:00
|
|
|
///
|
2016-04-25 10:28:21 +00:00
|
|
|
/// Parameters displayed in Metrology tab page
|
2016-04-25 13:25:23 +00:00
|
|
|
///
|
|
|
|
|
float BuoyancyTemp { get; set; } /// ambient temperature in [degree C]
|
|
|
|
|
float BuoyancyPress { get; set; } /// ambient pressure in [100000 Pa]
|
|
|
|
|
float BuoyancyHumi { get; set; } /// ambient relative humidity in [%]
|
|
|
|
|
float WeightStandardDensity { get; set; } /// density of the weight standard used to calibrate the scale [kg/m3]
|
2016-04-28 10:47:23 +00:00
|
|
|
|
2016-04-25 13:25:23 +00:00
|
|
|
string CalibCertificateNr { get; set; } /// calibration certificate number
|
|
|
|
|
DateTime CalibDate { get; set; } /// date of calibration
|
|
|
|
|
DateTime CalibValidDate { get; set; } /// calibration valid until (date)
|
|
|
|
|
}
|
2016-04-25 10:28:21 +00:00
|
|
|
}
|
|
|
|
|
|