namespace HStation.Model { /// /// 水泵 /// public class RevitPump : RevitLink { /// /// /// public RevitPump() { } /// /// /// public RevitPump(RevitPump rhs) : base(rhs) { this.RatedPower = rhs.RatedPower; this.CurveQH = rhs.CurveQH; this.SpeedRatio = rhs.SpeedRatio; this.SpeedRatioPattern = rhs.SpeedRatioPattern; this.Price = rhs.Price; this.PricePattern = rhs.PricePattern; this.CurveQE = rhs.CurveQE; } /// /// 额定功率 /// public double RatedPower { get; set; } /// /// 流量扬程曲线 /// public string CurveQH { get; set; } /// /// 转速比 /// public double? SpeedRatio { get; set; } /// /// 转速比模式 /// public string SpeedRatioPattern { get; set; } /// /// 能耗价格 /// public double? Price { get; set; } /// /// 价格模式 /// public string PricePattern { get; set; } /// /// 流量效率曲线 /// public string CurveQE { get; set; } } }