tbf/TestBenchFramework/BenchControl/Constants.cs
2014-07-28 09:56:40 +02:00

13 lines
349 B
C#

namespace TBF.BenchControl
{
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.9f;
}
}