tbf/TBF/BenchControl/GenericDevices/ITankDrainingCfg.cs

35 lines
692 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
namespace TBF.BenchControl.GenericDevices
{
public interface ITankDrainingCfg
{
/// <summary>
/// Max. mass of water in 'kg' or volume in 'l'
/// </summary>
float Capacity { get; }
/// <summary>
/// 'Empty' water mass in 'kg' or volume in 'l'
/// </summary>
float Empty { get; }
/// <summary>
/// Time in [s] to drain the tank completely
/// </summary>
int DrainTimeSec { get; }
/// <summary>
/// Name of the drain valve
/// </summary>
string DrainValve { get; }
/// <summary>
/// Name of the evaporation component
/// </summary>
string Evaporation { get; }
}
}