namespace Yw.EPAnet { /// /// 水泵 /// public class Pump : Link { /// /// /// public Pump() { } /// /// /// public Pump(Pump rhs) : base(rhs) { this.RatedP = rhs.RatedP; this.CurveQH = rhs.CurveQH; this.SpeedRatio = rhs.SpeedRatio; this.SpeedRatioPattern = rhs.SpeedRatioPattern; } /// /// 额定功率 /// public double RatedP { get; set; } /// /// 流量扬程曲线 /// public string CurveQH { get; set; } /// /// 转速比 /// public double? SpeedRatio { get; set; } /// /// 转速比模式 /// public string SpeedRatioPattern { get; set; } } }