tbf/TBF/Rig/GenericDevices/IScaleCfg.cs

21 lines
701 B
C#
Raw Normal View History

///
/// Copyright (c) 2013-2017 Sensus Metering Systems
///
using System;
2021-03-05 13:47:21 +00:00
using TBF.Rig.Generic;
2021-03-05 13:47:21 +00:00
namespace TBF.Rig.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 [%]
2026-03-12 13:50:47 +00:00
float WeightStandardDensity { get; set; } /// density of the volume standard used to calibrate the scale [kg/m3]
}
}