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"; /// /// 阀门开度损失系数曲线 /// public const string ValveOL = "ValveOL"; #endregion #region Tank /// /// 水池 /// public const string Tank = "Tank"; /// /// 水池容积曲线 /// public const string TankVol = "TankVol"; #endregion #region Exchanger /// /// 换热器 /// public const string Exchanger = "Exchanger"; /// /// 换热器水头损失曲线 /// public const string ExchangerQL = "ExchangerQL"; #endregion #region Compressor /// /// 压缩机 /// public const string Compressor = "Compressor"; /// /// 压缩机水头损失曲线 /// public const string CompressorQL = "CompressorQL"; #endregion /// /// 水头损失曲线 /// public const string CurveQL = "CurveQL"; } }