duheng
2024-08-23 14cccf079662c052b2e04d30b9d9082ada1272ff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
namespace HStation.Model
{
    /// <summary>
    /// 水泵
    /// </summary>
    public class RevitPump : RevitLink
    {
        /// <summary>
        /// 
        /// </summary>
        public RevitPump() { }
 
        /// <summary>
        /// 
        /// </summary>
        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;
        }
 
        /// <summary>
        ///  额定功率
        /// </summary>
        public double RatedPower { get; set; }
 
        /// <summary>
        /// 流量扬程曲线
        /// </summary>
        public string CurveQH { get; set; }
 
        /// <summary>
        /// 转速比
        /// </summary>
        public double? SpeedRatio { get; set; }
 
        /// <summary>
        ///  转速比模式
        /// </summary>
        public string SpeedRatioPattern { get; set; }
 
        /// <summary>
        ///  能耗价格
        /// </summary>
        public double? Price { get; set; }
 
        /// <summary>
        ///  价格模式
        /// </summary>
        public string PricePattern { get; set; }
 
        /// <summary>
        ///  流量效率曲线
        /// </summary>
        public string CurveQE { get; set; }
 
 
 
 
    }
}