tbf/TBF/Rig/GenericDevices/ITankDrainingCfg.cs
2021-10-26 19:38:09 +02:00

35 lines
683 B
C#

///
/// Copyright (c) 2017 Sensus Metering Systems
///
namespace TBF.Rig.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; }
}
}