namespace Yw.WinFrmUI
{
///
/// 水力曲线
///
public class HydroCurve
{
#region Pump
///
/// 水泵曲线
///
public const string Pump = "Pump";
///
/// 水泵流量扬程曲线
///
public const string PumpQH = "PumpQH";
///
/// 水泵流量功率曲线
///
public const string PumpQP = "PumpQP";
///
/// 水泵流量效率曲线
///
public const string PumpQE = "PumpQE";
#endregion
#region Valve
///
/// 阀门
///
public const string Valve = "Valve";
///
/// 阀门流量水头损失曲线
///
public const string ValveQL = "ValveQL";
#endregion
#region Tank
///
/// 水池
///
public const string Tank = "Tank";
///
/// 水池容积曲线
///
public const string TankVol = "TankVol";
#endregion
}
}