| | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public RevitPump() { } |
| | | public RevitPump() : base() { } |
| | | |
| | | /// <summary> |
| | | /// |
| | | /// </summary> |
| | | public RevitPump(RevitPump rhs) : base(rhs) |
| | | { |
| | | this.RatedPower = rhs.RatedPower; |
| | | this.RatedP = rhs.RatedP; |
| | | this.RatedQ = rhs.RatedQ; |
| | | this.RatedH = rhs.RatedH; |
| | | this.RatedN = rhs.RatedN; |
| | | this.RatedHz = rhs.RatedHz; |
| | | this.CurveQH = rhs.CurveQH; |
| | | this.CurveQP = rhs.CurveQP; |
| | | this.CurveQE = rhs.CurveQE; |
| | | this.SpeedRatio = rhs.SpeedRatio; |
| | | this.SpeedRatioPattern = rhs.SpeedRatioPattern; |
| | | this.Price = rhs.Price; |
| | | this.PricePattern = rhs.PricePattern; |
| | | this.CurveQE = rhs.CurveQE; |
| | | } |
| | | |
| | | /// <summary> |
| | | /// 额定功率 |
| | | /// 额定功率 (kW) |
| | | /// </summary> |
| | | public double RatedPower { get; set; } |
| | | public double RatedP { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 额定流量(m³/h) |
| | | /// </summary> |
| | | public double? RatedQ { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 额定扬程(m) |
| | | /// </summary> |
| | | public double? RatedH { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 额定转速(r/min) |
| | | /// </summary> |
| | | public double? RatedN { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 额定频率 |
| | | /// </summary> |
| | | public double RatedHz { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流量扬程曲线 |
| | |
| | | public string CurveQH { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 转速比 |
| | | /// 流量功率曲线 |
| | | /// </summary> |
| | | public double? SpeedRatio { get; set; } |
| | | public string CurveQP { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流量效率曲线 |
| | | /// </summary> |
| | | public string CurveQE { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 转速比[0,1] |
| | | /// </summary> |
| | | public double SpeedRatio { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 转速比模式 |
| | |
| | | /// </summary> |
| | | public string PricePattern { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 流量效率曲线 |
| | | /// </summary> |
| | | public string CurveQE { get; set; } |
| | | |
| | | |
| | | |
| | | |