tbf/TBF/Rig/GenericDevices/IScaleCfg.cs

21 lines
701 B
C#

///
/// Copyright (c) 2013-2017 Sensus Metering Systems
///
using System;
using TBF.Rig.Generic;
namespace TBF.Rig.GenericDevices
{
public interface IScaleCfg : ICalibInfoCfg
{
///
/// Parameters displayed in Metrology tab page
///
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 volume standard used to calibrate the scale [kg/m3]
}
}