tbf/TBF/BenchControl/GenericDevices/IScaleCfg.cs

21 lines
719 B
C#
Raw Normal View History

///
/// Copyright (c) 2013-2017 Sensus Metering Systems
///
using System;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
2018-11-12 17:35:47 +00:00
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 [%]
2018-11-12 17:35:47 +00:00
float WeightStandardDensity { get; set; } /// density of the weight standard used to calibrate the scale [kg/m3]
}
}