qin
2024-06-04 9490957edfc694a0378ee52af47e921b8ac44e7a
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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
using Hydro.CommonBase;
using Hydro.HydraulicModel;
using MetroFramework;
using System;
using System.Collections.Generic;
using System.Drawing;
 
namespace Hydro.ConfigModel
{
    public class GlobalModel
    {
 
 
        //创建查询缓存,将查询过的内容记录到缓存
        public static Dictionary<string, dynamic> dict_StringToType
        {
            get;
            set;
        } = new Dictionary<string, dynamic>();
        public static Dictionary<string, int> dict_StringToObjType
        {
            get;
            set;
        } = new Dictionary<string, int>();
        public static Dictionary<string, bool> dict_StringToisNode
        {
            get;
            set;
        } = new Dictionary<string, bool>();
        public static Dictionary<string, int> dict_StringToFuncType
        {
            get;
            set;
        } = new Dictionary<string, int>();
 
        //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 };
        private static HashSet<string> _NameList = null;
        public static HashSet<string> NameList
        {
            get
            {
                //if (_NameList!=null) _NameList.Sort();
                return _NameList;
            }
            set
            {
                _NameList = value;
            }
        }
        private static HashSet<string> _TagList = null;
        public static HashSet<string> TagList
        {
            get
            {
                //if (_TagList != null) _TagList.Sort();
                return _TagList;
            }
            set
            {
                _TagList = value;
            }
        }
 
 
        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,
                Type=HydraulicInputType.press,
                
                ObjectNames=new List<string>(){"已知压力点"},
            },
            new TypeIndicator
            {
                Name="节点用水量",
                isNode=true,
                Type=HydraulicInputType.demand,
                
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            new TypeIndicator
            {
                Name="节点用水模式",
                isNode=true,
                Type=HydraulicInputType.pattern,
                
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            new TypeIndicator
            {
                Name="水池水位",
                isNode=true,
                Type=HydraulicInputType.level,
                
                ObjectNames=new List<string>(){"水池","水库"},
            },
            new TypeIndicator
            {
                Name="水泵转速比",
                isNode=false,
                Type=HydraulicInputType.initPumpRS,
                
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="管线阻力系数",
                isNode=false,
                Type=HydraulicInputType.initSettings,
                
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="阀门开度",
                isNode=false,
                Type=HydraulicInputType.initSettings,
                
                ObjectNames=new List<string>(){"阀门"},
            },
            new TypeIndicator
            {
                Name="水泵开关",
                isNode=false,
                Type=HydraulicInputType.initStatus,
                
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="阀门开关",
                isNode=false,
                Type=HydraulicInputType.initStatus,
                
                ObjectNames=new List<string>(){"阀门"},
            },
            new TypeIndicator
            {
                Name="管线开关",
                isNode=false,
                Type=HydraulicInputType.initStatus,
                
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="管线直径",
                isNode=false,
                Type=HydraulicInputType.diameter,
                
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="管线长度",
                isNode=false,
                Type=HydraulicInputType.length,
                
                ObjectNames=new List<string>(){"管线"},
            },
            new TypeIndicator
            {
                Name="总水量",
                isNode=true,
                Type=HydraulicInputType.totalDemand,               
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            //new TypeIndicator
            //{
            //    Name="总分配水量",
            //    isNode=true,
            //    Type=HydraulicInputType.Distribution_TotalDemand,
                
            //    ObjectNames=new List<string>(){"节点","水表","消火栓"},
            //},
            new TypeIndicator
            {
                Name="节点压力",
                isNode=true,
                Type=HydraulicOutputType.Head,
        
                
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点自由压力",
                isNode=true,
                Type=HydraulicOutputType.Pressure,
 
                
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点需水量",
                isNode=true,
                Type=HydraulicOutputType.Demand,
 
                
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点标高",
                isNode=true,
                Type=HydraulicOutputType.Diameter,
 
                
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点水龄",
                isNode=true,
                Type=HydraulicOutputType.Quality,
 
                
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="节点水质",
                isNode=true,
                Type=HydraulicOutputType.Quality,
                
                ObjectNames=new List<string>(){"节点","水表","消火栓","水池","水库"},
            },
            new TypeIndicator
            {
                Name="管线流量",
                isNode=false,
                Type=HydraulicOutputType.Flow,
                
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="管线流速",
                isNode=false,
                Type=HydraulicOutputType.Velocity,
                
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="水头损失",
                isNode=false,
                Type=HydraulicOutputType.HeadLoss,
                
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="当前状态",
                isNode=false,
                Type=HydraulicOutputType.Status,
                
                ObjectNames=new List<string>(){"管线","阀门","水泵"},
            },
            new TypeIndicator
            {
                Name="水泵能耗",
                isNode=false,
                Type=HydraulicOutputType.Energy,
                
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="水泵开关",
                isNode=false,
                Type=HydraulicOutputType.InitStatus,
                
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="水泵转速比",
                isNode=false,
                Type=HydraulicOutputType.Settings,
                
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="初始及运行传参",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="初始传参",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="运行传参",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="种群生成器",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="方案筛选器",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="计算前处理",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="结果处理",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"水泵"},
            },
            new TypeIndicator
            {
                Name="当量分配",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            },
            new TypeIndicator
            {
                Name="随机分配",
                isNode=true,
                Type=HydraulicInputType.None,
                ObjectNames=new List<string>(){"节点","水表","消火栓"},
            }
 
 
 
        };
        public static List<TypeObject> DEFINE_OBJECT = new List<TypeObject>()
        {
            new TypeObject
            {
                Name="已知压力点",
                Type=HydraulicObjectType.EN_RESERVOIR,
                isNode=true,
            },
            new TypeObject
            {
                Name="节点",
                Type=HydraulicObjectType.EN_JUNCTION,
                isNode=true,
            },
            new TypeObject
            {
                Name="水表",
                Type=HydraulicObjectType.EN_JUNCTION,
                isNode=true,
            },
            new TypeObject
            {
                Name="消火栓",
                Type=HydraulicObjectType.EN_JUNCTION,
                isNode=true,
            },
            new TypeObject
            {
                Name="水池",
                Type=HydraulicObjectType.EN_TANK,
                isNode=true,
            },
            new TypeObject
            {
                Name="水库",
                Type=HydraulicObjectType.EN_RESERVOIR,
                isNode=true,
            },
            new TypeObject
            {
                Name="水泵",
                Type=HydraulicObjectType.EN_PUMP,
                isNode=false,
            },
            new TypeObject
            {
                Name="管线",
                Type=HydraulicObjectType.EN_PIPE,
                isNode=false,
            },
            new TypeObject
            {
                Name="阀门",
                Type=HydraulicObjectType.EN_GPV,
                isNode=false,
            },
          
        };
 
 
        public static List<AggregateFunction> DEFIND_AGGFUNC = new List<AggregateFunction>()
        {
            //生成一系列AggregateFunction,名称分别为:"累计值","平均值","最大值","最小值","计数","绝对累计值"
            new AggregateFunction("累计值",(arr)=>
            {
                double sum = 0;
                foreach (var item in arr)
                {
                    sum += item;
                }
                return sum;
            }), 
            new AggregateFunction("平均值",(arr)=>
            {
                double sum = 0;
                foreach (var item in arr)
                {
                    sum += item;
                }
                return sum/arr.Length;
            }),
            new AggregateFunction("最大值",(arr)=>
            {
                double max = arr[0];
                foreach (var item in arr)
                {
                    if (item > max) max = item;
                }
                return max;
            }),
            new AggregateFunction("最小值",(arr)=>
            {
                double min = arr[0];
                foreach (var item in arr)
                {
                    if (item < min) min = item;
                }
                return min;
            }),
            new AggregateFunction("计数",(arr)=>
            {
                return arr.Length;
            }),
            new AggregateFunction("绝对累计值",(arr)=>
            {
                double sum = 0;
                foreach (var item in arr)
                {
                    sum += Math.Abs(item);
                }
                return sum;
            }),
 
 
 
        };
        public static Dictionary<string, LogicalPointType> dict_LogicPoint = null;
        /// <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>() { "最大值","最小值","平均值","累计值","计数"},
                Type_expression= new List<string>(){ "集合计算"},
            },            
        };
    }
    
 
    public class AggregateFunction
    {
        //生成构造函数
        public AggregateFunction(string Name, Func<double[], double> CalcFunc)
        {
            this.Name = Name;
            this.CalcFunc = CalcFunc;
        }
        public string Name;
        public string Description;
        public Func<double[],double> CalcFunc;
    }
    public class LogicalPointType
    {
        public string Name;
        public MetroColorStyle_Inner titleStyle;
        public List<string> IndicatorNames;
        public List<string> Type_expression;
 
    }
    public class TypeIndicator
    {
        public string Name;
        /// <summary>
        /// true:节点;false:管线
        /// </summary>
        public bool isNode;
        private HydraulicInputType _inType= HydraulicInputType.None;
        private HydraulicOutputType _outType = HydraulicOutputType.None;
        public dynamic Type 
        { 
            get
            {
                if(_outType==HydraulicOutputType.None)
                    return _inType;
                else
                    return _outType;
                //if (isInput) return _inType;
                //else return _outType;
            }
            set
            {
                if (value is HydraulicInputType) _inType = value;
                else _outType = value;  
            }
        }
 
        public dynamic EpaResultType;
        public List<string> ObjectNames;
        /// <summary>
        /// true:输入;false:输出
        /// </summary>
        public bool isInput;
        
    }
    public class TypeObject
    {
        public string Name;
        public bool isNode;
        public HydraulicObjectType Type=HydraulicObjectType.EN_CVPIPE;
 
    }
    public class TypeFacilities
    {
        public string Name;
        public string Icon;
        public Color Color;
    }
 
}