ningshuxia
9 天以前 1519533649b43337d214523f7cd075edf237b3f7
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
using IStation.Model;
 
namespace IStation.Test
{
    public class PumpScheduleModel
    {
        /// <summary>
        /// 
        /// </summary>
        public PumpScheduleModel() { }
 
        /// <summary>
        /// 
        /// </summary>
        public PumpScheduleModel(PumpModel rhs)
        {
            this.Flag = rhs.Flag;
            this.RatedFlow = rhs.Qr;
            this.RatedHead = rhs.Hr;
            this.RatedSpeed = rhs.Nr;
            this.RatedPower = rhs.Pr;
            this.RatedEfficiency = rhs.Er;
            this.Erosion = rhs.NPSHr;
            this.InletDiameter = rhs.Ic;
            this.OutletDiameter = rhs.Oc;
            this.InletElevation = rhs.Ie;
            this.OutletElevation = rhs.Oe;
            this.IsVariableFrequency = rhs.IsBp;
            this.IsDoubleSuction = rhs.IsSxp;
        }
 
 
        /// <summary>
        /// 运行标志
        /// </summary>
        public int Flag { get; set; }
 
        /// <summary>
        /// 流量(m³/h)
        /// </summary>    
        public double RatedFlow { get; set; }
 
        /// <summary>
        /// 扬程(m)
        /// </summary>    
        public double RatedHead { get; set; }
 
        /// <summary>
        /// 转速(r/min)
        /// </summary>    
        public double RatedSpeed { get; set; }
 
        /// <summary>
        /// 功率(kw)
        /// </summary>    
        public double RatedPower { get; set; }
 
        /// <summary>
        /// 效率(%)
        /// </summary>    
        public double RatedEfficiency { get; set; }
 
        /// <summary>
        /// 汽蚀(m)
        /// </summary>    
        public double Erosion { get; set; }
 
        /// <summary>
        /// 进口口径(mm)
        /// </summary>
        public double? InletDiameter { get; set; }
 
        /// <summary>
        /// 出口口径(mm)
        /// </summary>
        public double? OutletDiameter { get; set; }
 
        /// <summary>
        /// 进口标高(m)
        /// </summary>
        public double? InletElevation { get; set; }
 
        /// <summary>
        /// 出口标高(m)
        /// </summary>
        public double? OutletElevation { get; set; }
 
        /// <summary>
        /// 是变频泵
        /// </summary>
        public bool IsVariableFrequency { get; set; }
 
        /// <summary>
        /// 是双吸泵
        /// </summary>     
        public bool IsDoubleSuction { get; set; }
 
        /// <summary>
        /// 流量-扬程曲线
        /// </summary>
        public CurveExpress CurveQH { get; set; }
         
        /// <summary>
        /// 流量-功率曲线
        /// </summary>
        public CurveExpress CurveQP { get; set; }
 
    }
 
}