Shuxia Ning
2024-10-08 cf4967a0aebab18c5a37137f3e4c61b2d73a54bb
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
using System;
 
namespace IStation.Model
{
    /// <summary>
    /// 泵
    /// </summary>    
    public partial class Pump : JsonModel<Pump>, System.ICloneable
    {
        /// <summary>
        /// 
        /// </summary>
        public Pump() { }
 
        /// <summary>
        /// 
        /// </summary>
        public Pump(Pump rhs)
        {
            this.Qr = rhs.Qr;
            this.Hr = rhs.Hr;
            this.Nr = rhs.Nr;
            this.Pr = rhs.Pr;
            this.Er = rhs.Er;
            this.NPSHr = rhs.NPSHr;
            this.StNumr = rhs.StNumr;
            this.Ic = rhs.Ic;
            this.Oc = rhs.Oc;
            this.IOd = rhs.IOd;
            this.IsBp = rhs.IsBp;
            this.IsSxp = rhs.IsSxp;
        }
 
        /// <summary>
        /// 
        /// </summary>
        public void Reset(Pump rhs)
        {
            this.Qr = rhs.Qr;
            this.Hr = rhs.Hr;
            this.Nr = rhs.Nr;
            this.Pr = rhs.Pr;
            this.Er = rhs.Er;
            this.NPSHr = rhs.NPSHr;
            this.StNumr = rhs.StNumr;
            this.Ic = rhs.Ic;
            this.Oc = rhs.Oc;
            this.IOd = rhs.IOd;
            this.IsBp = rhs.IsBp;
            this.IsSxp = rhs.IsSxp;
        }
 
 
 
        /// <summary>
        /// 流量(m³/h)
        /// </summary>    
        public double Qr { get; set; }
 
        /// <summary>
        /// 扬程(m)
        /// </summary>    
        public double Hr { get; set; }
 
        /// <summary>
        /// 转速(r/min)
        /// </summary>    
        public double Nr { get; set; }
 
        /// <summary>
        /// 功率(kw)
        /// </summary>    
        public double Pr { get; set; }
 
        /// <summary>
        /// 效率(%)
        /// </summary>    
        public double Er { get; set; }
 
        /// <summary>
        /// 汽蚀(m)
        /// </summary>    
        public double NPSHr { get; set; }
 
        /// <summary>
        /// 级数
        /// </summary>    
        public int StNumr { get; set; } = 1;
 
        /// <summary>
        /// 进口口径(mm)
        /// </summary>
        public double? Ic { get; set; }
 
        /// <summary>
        /// 出口口径(mm)
        /// </summary>
        public double? Oc { get; set; }
 
        /// <summary>
        /// 进出口距离(mm)
        /// </summary>
        public double? IOd { get; set; }
 
        /// <summary>
        /// 进口标高(m)
        /// </summary>
        public double? Ie { get; set; }
 
        /// <summary>
        /// 出口标高(m)
        /// </summary>
        public double? Oe { get; set; }
 
        /// <summary>
        /// 是否变频
        /// </summary>
        public bool IsBp { get; set; }
 
        /// <summary>
        /// 是否是双吸泵
        /// </summary>     
        public bool IsSxp { get; set; }
 
 
        /// <summary>
        ///
        /// </summary>
        public Pump Clone()
        {
            return new Pump(this);
        }
 
        object ICloneable.Clone()
        {
            return Clone();
        }
    }
 
}