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

15 lines
400 B
C#

///
/// Copyright (c) 2013-2017 Sensus Metering Systems
///
namespace TBF.Rig
{
public static class Constants
{
/// <summary>
/// A fraction of the tank volume that is considered to be safe.
/// When the estimated test end tank volume exceeds this fraction, tank emptying is forced.
/// </summary>
public const float TankFullFactor = 0.95f;
}
}