Shuxia Ning
2024-10-23 217c17853daef559040a66aced4a613c4308e4ca
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
namespace Yw.WinFrmUI.Phart
{
    public class PumpSerialParallelViewModel
    {
        public PumpSerialParallelViewModel() { }
        public PumpSerialParallelViewModel(PumpSerialParallelViewModel rhs)
        {
            this.ID = rhs.ID;
            this.Id = rhs.Id;
            this.Name = rhs.Name;
            this.IsBp = rhs.IsBp;
            this.RatedSpeed = rhs.RatedSpeed;
            this.CurrentSpeed = rhs.CurrentSpeed;
            this.CurrentHz = rhs.CurrentHz;
            this.Qh = rhs.Qh;
            this.Qe = rhs.Qe;
            this.Qp = rhs.Qp;
        }
 
        /// <summary>
        /// 标识
        /// </summary>
        public long ID { get; set; }
 
        /// <summary>
        /// 标识
        /// </summary>
        public string Id { get; set; }
 
        /// <summary>
        /// 名称
        /// </summary>
        public string Name { get; set; }
 
        /// <summary>
        /// 编码
        /// </summary>
        public string Code { get; set; }
 
        /// <summary>
        /// 是否变频
        /// </summary>
        public bool IsBp { get; set; }
 
        /// <summary>
        /// 额定转速
        /// </summary>
        public double RatedSpeed { get; set; }
 
        /// <summary>
        /// 当前转速
        /// </summary>
        public double CurrentSpeed { get; set; }
 
        /// <summary>
        /// 当前频率
        /// </summary>
        public double CurrentHz { get; set; }
 
        /// <summary>
        /// 流量扬程线
        /// </summary>
        public Yw.Geometry.CubicSpline2d Qh { get; set; }
         
        /// <summary>
        /// 流量效率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d Qe { get; set; }
 
        /// <summary>
        /// 流量功率线
        /// </summary>
        public Yw.Geometry.CubicSpline2d Qp { get; set; }
 
    }
 
 
}