cloudflight
2023-11-23 2284ddda0e49d402ff901d6691e937af4c628858
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
using HydraulicModel;
using System.Collections.Generic;
using System.Drawing;
 
namespace Hydro.ConfigModel
{
    public class GlobalModel
    {
 
        //public static List<string> Type_LogicalOfPoint = new List<string>() { "初始条件", "约束条件", "试算参数", "目标函数", "变量" };
        //public static List<MetroColorStyle_Inner> Color_Logical = new List<MetroColorStyle_Inner>() { MetroColorStyle_Inner.Blue, MetroColorStyle_Inner.Pink, MetroColorStyle_Inner.Orange, MetroColorStyle_Inner.Red, MetroColorStyle_Inner.Yellow };
        ///// <summary>
        ///// 跟EpaModelInput对应
        ///// </summary>
        //public static List<string> Type_Indicator = new List<string>() { "压力", "用水量", "水位", "水泵转速比", "阻力系数", "水泵状态" };
 
        //public static List<bool> Type_Indicator_isNode = new List<bool>() { true, true, true, false, false, false };
        public static List<string> NameList=null;
 
 
        public static List<TypeFacilities> DEFINE_FACI = new List<TypeFacilities>() 
        {
             new TypeFacilities()
             {
                 Name="取水泵站",
                 Icon="🚆",
                 Color=Color.Green,
             },
             new TypeFacilities()
             {
                 Name="水厂",
                 Icon="🏢",
                 Color=Color.Blue,
             },
             new TypeFacilities()
             {
                 Name="加压泵站",
                 Icon="🏡",
                 Color=Color.Yellow,
             },
             new TypeFacilities()
             {
                 Name="管网",
                 Icon="🔧",
                 Color=Color.Gray,
             },
             new TypeFacilities()
             {
                 Name="变量集",
                 Icon="📂",
                 Color=Color.Brown,
             },
             new TypeFacilities()
             {
                 Name="说明",
                 Icon="📄",
                 Color=Color.Pink,
             },
 
        };
        public static List<TypeIndicator> DEFINE_INDICATOR = new List<TypeIndicator>()
        {
            new TypeIndicator
            {
                Name="已知压力",
                isNode=true,
                EpaType=EPAModelInput.eType.press,
                isInput=true,
                ObjectNames=new List<string>(){"已知压力点"},
            },
            new TypeIndicator
            {
                Name="节点用水量",
                isNode=true,
                EpaType=EPAModelInput.eType.demand,
                isInput=true,
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            new TypeIndicator
            {
                Name="节点用水模式",
                isNode=true,
                EpaType=EPAModelInput.eType.pattern,
                isInput=true,
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            new TypeIndicator
            {
                Name="水池水位",
                isNode=true,
                EpaType=EPAModelInput.eType.level,
                isInput=true,
                ObjectNames=new List<string>(){"水池","水库"},
            },
            new TypeIndicator
            {
                Name="水泵转速比",
                isNode=false,
                EpaType=EPAModelInput.eType.initPumpRS,
                isInput=true,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="管线阻力系数",
                isNode=false,
                EpaType=EPAModelInput.eType.initSettings,
                isInput=true,
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="阀门开度",
                isNode=false,
                EpaType=EPAModelInput.eType.initSettings,
                isInput=true,
                ObjectNames=new List<string>(){"阀门"},
            },
            new TypeIndicator
            {
                Name="水泵开关",
                isNode=false,
                EpaType=EPAModelInput.eType.initStatus,
                isInput=true,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="阀门开关",
                isNode=false,
                EpaType=EPAModelInput.eType.initStatus,
                isInput=true,
                ObjectNames=new List<string>(){"阀门"},
            },
            new TypeIndicator
            {
                Name="管线开关",
                isNode=false,
                EpaType=EPAModelInput.eType.initStatus,
                isInput=true,
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="管线直径",
                isNode=false,
                EpaType=EPAModelInput.eType.diameter,
                isInput=true,
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="管线长度",
                isNode=false,
                EpaType=EPAModelInput.eType.length,
                isInput=true,
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="总水量",
                isNode=true,
                EpaType=EPAModelInput.eType.totalDemand,
                isInput=true,
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            new TypeIndicator
            {
                Name="总分配水量",
                isNode=true,
                EpaType=EPAModelInput.eType.Distribution_TotalDemand,
                isInput=true,
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            new TypeIndicator
            {
                Name="节点压力",
                isNode=true,
                EpaType=EPAModelOutput.eType.HEAD_HEADLOSSS,
        
                isInput=false,
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点自由压力",
                isNode=true,
                EpaType=EPAModelOutput.eType.STATUS_PRESSURE,
 
                isInput=false,
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点需水量",
                isNode=true,
                EpaType=EPAModelOutput.eType.VELOCITY_DEMAND,
 
                isInput=false,
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点水龄",
                isNode=true,
                EpaType=EPAModelOutput.eType.QUALITY_SETTINGS,
 
                isInput=false,
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点水质",
                isNode=true,
                EpaType=EPAModelOutput.eType.QUALITY_SETTINGS,
 
                isInput=false,
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="管线流量",
                isNode=false,
                EpaType=EPAModelOutput.eType.FLOW,
                isInput=false,
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="管线流速",
                isNode=false,
                EpaType=EPAModelOutput.eType.VELOCITY_DEMAND,
                isInput=false,
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="水头损失",
                isNode=false,
                EpaType=EPAModelOutput.eType.HEAD_HEADLOSSS,
                isInput=false,
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="当前状态",
                isNode=false,
                EpaType=EPAModelOutput.eType.STATUS_PRESSURE,
                isInput=false,
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="水泵能耗",
                isNode=false,
                EpaType=EPAModelOutput.eType.ENERGY,
                isInput=false,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="水泵开关",
                isNode=false,
                EpaType=EPAModelOutput.eType.INITSTATUS,
                isInput=false,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="水泵转速比",
                isNode=false,
                EpaType=EPAModelOutput.eType.QUALITY_SETTINGS,
                isInput=false,
                ObjectNames=new List<string>(){"水泵"},
            },
            
 
 
        };
        public static List<TypeObject> DEFINE_OBJECT = new List<TypeObject>()
        {
            new TypeObject
            {
                Name="已知压力点",
                EPAObjType=EPAModelOutput.ObjType.EN_RESERVOIR,
                isNode=true,
            },
            new TypeObject
            {
                Name="节点",
                EPAObjType=EPAModelOutput.ObjType.EN_JUNCTION,
                isNode=true,
            },
            new TypeObject
            {
                Name="水表",
                EPAObjType=EPAModelOutput.ObjType.EN_JUNCTION,
                isNode=true,
            },
            new TypeObject
            {
                Name="消火栓",
                EPAObjType=EPAModelOutput.ObjType.EN_JUNCTION,
                isNode=true,
            },
            new TypeObject
            {
                Name="水池",
                EPAObjType=EPAModelOutput.ObjType.EN_TANK,
                isNode=true,
            },
            new TypeObject
            {
                Name="水库",
                EPAObjType=EPAModelOutput.ObjType.EN_RESERVOIR,
                isNode=true,
            },
            new TypeObject
            {
                Name="水泵",
                EPAObjType=EPAModelOutput.ObjType.EN_PUMP,
                isNode=false,
            },
            new TypeObject
            {
                Name="管线",
                EPAObjType=EPAModelOutput.ObjType.EN_PIPE,
                isNode=false,
            },
            new TypeObject
            {
                Name="阀门",
                EPAObjType=EPAModelOutput.ObjType.EN_GPV,
                isNode=false,
            },
          
        };
    
 
        /// <summary>
        /// 
        /// </summary>
        public static List<LogicalPointType> DEFINE_LOGICPOINT = new List<LogicalPointType>()
        {
            
            new LogicalPointType()
            {
                Name = "初始条件",
                titleStyle = MetroColorStyle_Inner.Blue,
                IndicatorNames = new List<string>(){ "已知压力","节点用水量", "节点用水模式", "水池水位","水泵转速比","管线阻力系数","阀门开度","水泵开关","阀门开关","管线开关","管线直径","管线长度","总水量","总分配水量" },
                Type_expression= new List<string>() { "基准值(界面)", "模式系数(界面)", "基准值(接口)", "模式系数(接口)", "定义值"},
            },
            new LogicalPointType()
            {
                Name = "下阶段条件",
                titleStyle = MetroColorStyle_Inner.Blue,
                IndicatorNames = new List<string>(){ "已知压力","节点用水量", "节点用水模式", "水池水位","水泵转速比","管线阻力系数","阀门开度","水泵开关","阀门开关","管线开关","管线直径","管线长度","总水量" },
                Type_expression= new List<string>() { "基准值(界面)", "模式系数(界面)", "基准值(接口)", "模式系数(接口)", "定义值"},
            },
            new LogicalPointType()
            {
                Name = "试算参数",
                titleStyle = MetroColorStyle_Inner.Pink,
                IndicatorNames = new List<string>(){ "已知压力","节点用水量","水池水位","水泵转速比","管线阻力系数","阀门开度","水泵开关","阀门开关","管线开关","管线直径","管线长度","总水量" },
                Type_expression= new List<string>() { "∈","变化值∈" },
            },
            new LogicalPointType()
            {
                Name = "水量分配",
                titleStyle = MetroColorStyle_Inner.DarkGreen,
                IndicatorNames = new List<string>(){ "水量分配" },
                Type_expression= new List<string>() { "当量分配","随机分配"},
            },
            new LogicalPointType()
            {
                Name = "约束条件",
                titleStyle = MetroColorStyle_Inner.Yellow_Content,
                IndicatorNames = new List<string>(){ "节点压力", "节点自由压力", "节点需水量", "管线流量", "管线流速", "水头损失", "水泵能耗","水泵开关","水泵转速比" },
                Type_expression= new List<string>() { "∈" },
            },
            new LogicalPointType()
            {
                Name = "目标函数",
                titleStyle = MetroColorStyle_Inner.DarkRed,
                IndicatorNames = new List<string>(){ "节点压力", "节点自由压力", "节点需水量", "管线流量", "管线流速", "水头损失", "水泵能耗","水泵开关","水泵转速比" },
                Type_expression= new List<string>() { "最小","最大"  },//"接近",
            },
            new LogicalPointType()
            {
                Name = "表达式",
                titleStyle = MetroColorStyle_Inner.SkyBlue_Content,
                IndicatorNames = new List<string>(){ "节点压力", "节点自由压力", "节点需水量", "管线流量", "管线流速", "水头损失", "水泵能耗","水泵开关","水泵转速比" },
                Type_expression= new List<string>() { "表达式计算"  },//"接近",
            },
            new LogicalPointType()
            {
                Name = "变量",
                titleStyle = MetroColorStyle_Inner.Green_Content,
                IndicatorNames = new List<string>(){ "节点压力","节点自由压力", "节点需水量","节点水质", "管线流量", "管线流速","水头损失","管线状态", "水泵能耗" ,"水泵开关","水泵转速比"},
                Type_expression= new List<string>() { "计算值","变化值","初始计算值","基准值(界面)","基准值(接口)","定义值","子方案值"},
            },
            new LogicalPointType()
            {
                Name = "预处理插件",
                titleStyle = MetroColorStyle_Inner.Yellow_Content,
                IndicatorNames = new List<string>(){ },
                Type_expression= new List<string>() { "初始及运行传参", "初始传参", "运行传参",  "计算前处理","方案筛选器","结果处理"},
            },
            new LogicalPointType()
            {
                Name = "集合",
                titleStyle = MetroColorStyle_Inner.Yellow_Content,
                //IndicatorNames = new List<string>(){ "已知压力","节点用水量", "水池水位","水泵转速比","管线阻力系数","阀门开度","水泵开关","阀门开关","管线开关","管线直径","管线长度","[-----输出-----]","节点压力", "节点自由压力", "节点需水量", "管线流量", "管线流速", "水泵能耗","水泵开关","水泵转速比" },
                IndicatorNames = new List<string>(){  "节点压力","节点自由压力", "节点需水量","节点水质", "管线流量", "管线流速","水头损失","管线状态", "水泵能耗" ,"水泵开关","水泵转速比" },
                Type_expression= new List<string>() { "最大值","最小值","平均值","累计值","计数"},
            },            
        };
    }
    
}