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
| namespace PBS.WinFrmUI
| {
| public class IBoxControllViewModel
| {
| /// <summary>
| /// 二供设施
| /// </summary>
| public PBS.Vmo.FacilityVmo facilities { get; set; }
|
| /// <summary>
| /// 成套设备
| /// </summary>
| public HStation.Vmo.AsstesPackageExVmo Package { get; set; }
|
| /// <summary>
| /// 机泵型号对象
| /// </summary>
| public List<HStation.Vmo.AssetsPumpMainVmo> equations { get; set; }
|
| /// <summary>
| /// 流量扬程定义点
| /// </summary>
| public List<PointF> QHPtList { get; set; } = new List<PointF>()
| {
| new PointF(0,67.68f ),
| new PointF(3.636f,67.79f),
| new PointF(7.273f,67.48f),
| new PointF(10.91f,66.66f),
| new PointF(14.55f,65.23f),
| new PointF(18.18f,63.1f ),
| new PointF(21.82f,60.17f),
| new PointF(25.45f,56.34f),
| new PointF(29.09f,51.52f),
| new PointF(32.73f,45.61f),
| new PointF(36.36f,38.51f),
| new PointF(40f,30.14f ),
| };
| /// <summary>
| /// 流量效率定义点
| /// </summary>
| public List<PointF> QEPtList { get; set; }=new(){
| new PointF(0, 0f ),
| new PointF(3.636f,19.01f),
| new PointF(7.273f,34.72f),
| new PointF(10.91f,47.69f),
| new PointF(14.55f,57.94f),
| new PointF(18.18f,65.5f ),
| new PointF(21.82f,70.4f),
| new PointF(25.45f,72.65f),
| new PointF(29.09f,72.3f),
| new PointF(32.73f,69.35f),
| new PointF(36.36f,63.85f),
| new PointF(40f, 55.8f ),
| };
|
| /// <summary>
| /// 流量功率定义点
| /// </summary>
| public List<PointF> QPPtList { get; set; } = new(){
| new PointF(0, 3.064f ),
| new PointF(3.636f,3.418f),
| new PointF(7.273f,3.779f),
| new PointF(10.91f,4.139f),
| new PointF(14.55f,4.489f),
| new PointF(18.18f,4.822f ),
| new PointF(21.82f,5.128f),
| new PointF(25.45f,5.4f),
| new PointF(29.09f,5.628f),
| new PointF(32.73f,5.805f),
| new PointF(36.36f,5.921f),
| new PointF(40f, 5.969f),
| };
|
|
| /// <summary>
| /// 流量压降曲线
| /// </summary>
| public List<PointF> 流量压降曲线 { get; set; }
|
| /// <summary>
| /// 流量压降下限
| /// </summary>
| public List<PointF> 流量压降下限 { get; set; }
|
| /// <summary>
| /// 流量压降上限
| /// </summary>
| public List<PointF> 流量压降上限 { get; set; }
|
|
| /// <summary>
| ///
| /// </summary>
| public bool IsControll { get; set; } = false;
| }
| }
|
|