duheng
2024-12-04 f7bed326ef5948e76dd1a1b24a9ed10f5b2e5e4e
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
namespace Yw.WinFrmUI.Phart
{
    /// <summary>
    /// 泵变速ViewModel
    /// </summary>
    public class PumpVariableSpeedViewModel
    {
        public PumpVariableSpeedViewModel() { }
        public PumpVariableSpeedViewModel(PumpVariableSpeedViewModel rhs)
        {
            this.Id = rhs.Id;
            this.Name = rhs.Name;
            this.RatedQ = rhs.RatedQ;
            this.RatedH = rhs.RatedH;
            this.RatedP = rhs.RatedP;
            this.RatedN = rhs.RatedN;
            this.RatedHz = rhs.RatedHz; 
            this.CurrentN = rhs.CurrentN;   
            this.CurrentHz  = rhs.CurrentHz;
            this.CurrentColor = rhs.CurrentColor;
 
            this.CurveQH = rhs.CurveQH;
            this.CurveQE = rhs.CurveQE;
            this.CurveQP = rhs.CurveQP; 
            this.CurrentCurveQH= rhs.CurrentCurveQH;
            this.CurrentCurveQE= rhs.CurrentCurveQE;
            this.CurrentCurveQP = rhs.CurrentCurveQP;
            this.EquipPoint = rhs.EquipPoint;
        }
 
        /// <summary>
        /// 标识
        /// </summary>
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string CurveName { get; set; }
 
        /// <summary>
        /// 额定流量
        /// </summary>
        public double RatedQ { get; set; }
 
        /// <summary>
        /// 额定扬程
        /// </summary>
        public double RatedH { get; set; }
 
        /// <summary>
        /// 额定功率
        /// </summary>
        public double RatedP { get; set; }
 
        /// <summary>
        /// 额定转速
        /// </summary>
        public double RatedN { get; set; }
 
        /// <summary>
        /// 额定频率
        /// </summary>
        public double RatedHz { get; set; }
 
        /// <summary>
        /// 当前转速
        /// </summary>
        public double CurrentN { get; set; }
 
        /// <summary>
        /// 当前频率
        /// </summary>
        public double CurrentHz { get; set; }
 
        /// <summary>
        /// 当前颜色
        /// </summary>
        public Color CurrentColor { get; set; }
 
        /// <summary>
        /// 流量扬程线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurveQH { get; set; }
 
        /// <summary>
        /// 流量效率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurveQE { get; set; }
 
        /// <summary>
        /// 流量功率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurveQP { get; set; }
 
        /// <summary>
        /// 当前流量扬程线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurrentCurveQH { get; set; }
 
        /// <summary>
        /// 当前流量效率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurrentCurveQE { get; set; }
 
        /// <summary>
        /// 当前流量功率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d CurrentCurveQP { get; set; }  
 
        /// <summary>
        /// 装置点
        /// </summary>
        public Yw.Geometry.Point2d EquipPoint { get; set; }
 
    }
 
}