ato-water-lib 0.0.9 → 0.0.11

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,1132 @@
1
+ import go from 'gojs';
2
+ import { AtoGojsEditorModel } from '../models/gojs-editor.model';
3
+ export declare enum ENUM_ASSET_PARAMETERS {
4
+ FEED_FLOW_RATE = "Feed Flow Rate",
5
+ FEED_CONDUCTIVITY = "Feed Conductivity",
6
+ FEED_TEMPERATURE = "Feed Temperature",
7
+ PRIMARY_PRESSURE = "Primary Pressure",
8
+ REJECTION_RATE_SALT_PASSAGE = "Rejection Rate/Salt Passage",
9
+ PRESSURE_DROP = "Pressure Drop",
10
+ SYSTEM_RECOVERY_RATE = "System Recovery Rate",
11
+ PERMEATE_FLOW_RATE = "Permeate Flow Rate",
12
+ PERMEATE_CONDUCTIVITY = "Permeate Conductivity",
13
+ PERMEATE_PRESSURE = "Permeate Pressure",
14
+ CONCENTRATE_FLOW_RATE = "Concentrate Flow Rate",
15
+ CONCENTRATE_PRESSURE = "Stage2 Concentrate Pressure",
16
+ CONCENTRATE_CONDUCTIVITY = "Concentrate Conductivity",
17
+ MAKEUP_WATER_FLOW_RATE = "MakeupWaterFlowRate",
18
+ MAKEUP_WATER_FLOW = "MakeupWaterFlow",
19
+ MAKEUP_WATER_CONDUCTIVITY = "MakeupWaterConductivity",
20
+ MAKEUP_WATER_PH = "MakeupWaterpH",
21
+ MAKEUP_WATER_CALCIUM = "MakeupWaterCalcium",
22
+ MAKEUP_WATER_TOTAL_IRON = "MakeupWaterTotalIron",
23
+ EVAPORATION_LOSS_FLOW_RATE = "EvaporationLossFlowRate",
24
+ EVAPORATION_LOSS_FLOW = "EvaporationLossFlow",
25
+ BLOWDOWN_WATER_FLOW_RATE = "BlowdownWaterFlowRate",
26
+ BLOWDOWN_WATER_FLOW = "BlowdownWaterFlow",
27
+ WARMER_WATER_FLOW_RATE = "WarmerWaterFlowRate",
28
+ WARMER_WATER_FLOW = "WarmerWaterFlow",
29
+ ANALYSIS_CONDUCTIVITY = "AnalysisConductivity",
30
+ ANALYSIS_PH = "AnalysispH",
31
+ ANALYSIS_CALCIUM = "AnalysisCalcium",
32
+ ANALYSIS_TOTAL_IRON = "AnalysisTotalIron",
33
+ CHEMISTRY_PHOSPHATE = "ChemistryPhosphate",
34
+ CHEMISTRY_CHLORINE = "ChemistryChlorine",
35
+ CHEMISTRY_STP_RESIDUAL = "ChemistrySTPResidual",
36
+ CHEMISTRY_CS_CORROSION = "ChemistryCSCorrosion"
37
+ }
38
+ export declare enum WATER_SYSTEMS_NAME {
39
+ EVAPORATION_LOSS = "Evaporation Loss",
40
+ MAKEUP_WATER = "Makeup Water",
41
+ WARMER_WATER = "Warmer Water (Recirculation)",
42
+ BLOWDOWN_WATER = "Blowdown Water",
43
+ COOLING_TOWER_ANALYSIS = "Cooling Water Analysis",
44
+ COOLING_WATER_CHEMISTRY = "Cooling Water Chemistry"
45
+ }
46
+ export declare const DATA_ASSET_PARAMETER_FIELDS: {
47
+ "Feed Flow Rate": {
48
+ name: ENUM_ASSET_PARAMETERS;
49
+ key: ENUM_ASSET_PARAMETERS;
50
+ };
51
+ "Feed Conductivity": {
52
+ name: ENUM_ASSET_PARAMETERS;
53
+ key: ENUM_ASSET_PARAMETERS;
54
+ };
55
+ "Feed Temperature": {
56
+ name: ENUM_ASSET_PARAMETERS;
57
+ key: ENUM_ASSET_PARAMETERS;
58
+ };
59
+ "Primary Pressure": {
60
+ name: ENUM_ASSET_PARAMETERS;
61
+ key: ENUM_ASSET_PARAMETERS;
62
+ };
63
+ "Rejection Rate/Salt Passage": {
64
+ name: ENUM_ASSET_PARAMETERS;
65
+ key: ENUM_ASSET_PARAMETERS;
66
+ };
67
+ "Pressure Drop": {
68
+ name: ENUM_ASSET_PARAMETERS;
69
+ key: ENUM_ASSET_PARAMETERS;
70
+ };
71
+ "System Recovery Rate": {
72
+ name: ENUM_ASSET_PARAMETERS;
73
+ key: ENUM_ASSET_PARAMETERS;
74
+ };
75
+ "Permeate Flow Rate": {
76
+ name: ENUM_ASSET_PARAMETERS;
77
+ key: ENUM_ASSET_PARAMETERS;
78
+ };
79
+ "Permeate Conductivity": {
80
+ name: ENUM_ASSET_PARAMETERS;
81
+ key: ENUM_ASSET_PARAMETERS;
82
+ };
83
+ "Permeate Pressure": {
84
+ name: ENUM_ASSET_PARAMETERS;
85
+ key: ENUM_ASSET_PARAMETERS;
86
+ };
87
+ "Concentrate Flow Rate": {
88
+ name: ENUM_ASSET_PARAMETERS;
89
+ key: ENUM_ASSET_PARAMETERS;
90
+ };
91
+ "Stage2 Concentrate Pressure": {
92
+ name: ENUM_ASSET_PARAMETERS;
93
+ key: ENUM_ASSET_PARAMETERS;
94
+ };
95
+ "Concentrate Conductivity": {
96
+ name: ENUM_ASSET_PARAMETERS;
97
+ key: ENUM_ASSET_PARAMETERS;
98
+ };
99
+ MakeupWaterFlowRate: {
100
+ name: string;
101
+ key: ENUM_ASSET_PARAMETERS;
102
+ waterSystem: WATER_SYSTEMS_NAME;
103
+ };
104
+ MakeupWaterFlow: {
105
+ name: string;
106
+ key: ENUM_ASSET_PARAMETERS;
107
+ waterSystem: WATER_SYSTEMS_NAME;
108
+ };
109
+ MakeupWaterConductivity: {
110
+ name: string;
111
+ key: ENUM_ASSET_PARAMETERS;
112
+ waterSystem: WATER_SYSTEMS_NAME;
113
+ };
114
+ MakeupWaterpH: {
115
+ name: string;
116
+ key: ENUM_ASSET_PARAMETERS;
117
+ waterSystem: WATER_SYSTEMS_NAME;
118
+ };
119
+ MakeupWaterCalcium: {
120
+ name: string;
121
+ key: ENUM_ASSET_PARAMETERS;
122
+ waterSystem: WATER_SYSTEMS_NAME;
123
+ };
124
+ MakeupWaterTotalIron: {
125
+ name: string;
126
+ key: ENUM_ASSET_PARAMETERS;
127
+ waterSystem: WATER_SYSTEMS_NAME;
128
+ };
129
+ EvaporationLossFlowRate: {
130
+ name: string;
131
+ key: ENUM_ASSET_PARAMETERS;
132
+ waterSystem: WATER_SYSTEMS_NAME;
133
+ };
134
+ EvaporationLossFlow: {
135
+ name: string;
136
+ key: ENUM_ASSET_PARAMETERS;
137
+ waterSystem: WATER_SYSTEMS_NAME;
138
+ };
139
+ BlowdownWaterFlowRate: {
140
+ name: string;
141
+ key: ENUM_ASSET_PARAMETERS;
142
+ waterSystem: WATER_SYSTEMS_NAME;
143
+ };
144
+ BlowdownWaterFlow: {
145
+ name: string;
146
+ key: ENUM_ASSET_PARAMETERS;
147
+ waterSystem: WATER_SYSTEMS_NAME;
148
+ };
149
+ WarmerWaterFlowRate: {
150
+ name: string;
151
+ key: ENUM_ASSET_PARAMETERS;
152
+ waterSystem: WATER_SYSTEMS_NAME;
153
+ };
154
+ WarmerWaterFlow: {
155
+ name: string;
156
+ key: ENUM_ASSET_PARAMETERS;
157
+ waterSystem: WATER_SYSTEMS_NAME;
158
+ };
159
+ AnalysisConductivity: {
160
+ name: string;
161
+ key: ENUM_ASSET_PARAMETERS;
162
+ waterSystem: WATER_SYSTEMS_NAME;
163
+ };
164
+ AnalysispH: {
165
+ name: string;
166
+ key: ENUM_ASSET_PARAMETERS;
167
+ waterSystem: WATER_SYSTEMS_NAME;
168
+ };
169
+ AnalysisCalcium: {
170
+ name: string;
171
+ key: ENUM_ASSET_PARAMETERS;
172
+ waterSystem: WATER_SYSTEMS_NAME;
173
+ };
174
+ AnalysisTotalIron: {
175
+ name: string;
176
+ key: ENUM_ASSET_PARAMETERS;
177
+ waterSystem: WATER_SYSTEMS_NAME;
178
+ };
179
+ ChemistryPhosphate: {
180
+ name: string;
181
+ key: ENUM_ASSET_PARAMETERS;
182
+ waterSystem: WATER_SYSTEMS_NAME;
183
+ };
184
+ ChemistryChlorine: {
185
+ name: string;
186
+ key: ENUM_ASSET_PARAMETERS;
187
+ waterSystem: WATER_SYSTEMS_NAME;
188
+ };
189
+ ChemistrySTPResidual: {
190
+ name: string;
191
+ key: ENUM_ASSET_PARAMETERS;
192
+ waterSystem: WATER_SYSTEMS_NAME;
193
+ };
194
+ ChemistryCSCorrosion: {
195
+ name: string;
196
+ key: ENUM_ASSET_PARAMETERS;
197
+ waterSystem: WATER_SYSTEMS_NAME;
198
+ };
199
+ };
200
+ export declare const DATA_WATER_SYSTEMS: {
201
+ "Evaporation Loss": {
202
+ title: WATER_SYSTEMS_NAME;
203
+ color: AtoGojsEditorModel.ENUM_COLORS;
204
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
205
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
206
+ };
207
+ "Warmer Water (Recirculation)": {
208
+ title: WATER_SYSTEMS_NAME;
209
+ color: AtoGojsEditorModel.ENUM_COLORS;
210
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
211
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
212
+ };
213
+ "Blowdown Water": {
214
+ title: WATER_SYSTEMS_NAME;
215
+ color: AtoGojsEditorModel.ENUM_COLORS;
216
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
217
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
218
+ };
219
+ "Makeup Water": {
220
+ title: WATER_SYSTEMS_NAME;
221
+ color: AtoGojsEditorModel.ENUM_COLORS;
222
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
223
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
224
+ };
225
+ "Cooling Water Analysis": {
226
+ title: WATER_SYSTEMS_NAME;
227
+ color: AtoGojsEditorModel.ENUM_COLORS;
228
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
229
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
230
+ };
231
+ "Cooling Water Chemistry": {
232
+ title: WATER_SYSTEMS_NAME;
233
+ color: AtoGojsEditorModel.ENUM_COLORS;
234
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
235
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
236
+ };
237
+ };
238
+ export declare const ASSET_CATEGORY_PARAMS: {
239
+ "Evaporation Loss": {
240
+ name: string;
241
+ key: ENUM_ASSET_PARAMETERS;
242
+ waterSystem: WATER_SYSTEMS_NAME;
243
+ }[];
244
+ "Warmer Water (Recirculation)": {
245
+ name: string;
246
+ key: ENUM_ASSET_PARAMETERS;
247
+ waterSystem: WATER_SYSTEMS_NAME;
248
+ }[];
249
+ "Makeup Water": {
250
+ name: string;
251
+ key: ENUM_ASSET_PARAMETERS;
252
+ waterSystem: WATER_SYSTEMS_NAME;
253
+ }[];
254
+ "Blowdown Water": {
255
+ name: string;
256
+ key: ENUM_ASSET_PARAMETERS;
257
+ waterSystem: WATER_SYSTEMS_NAME;
258
+ }[];
259
+ "Cooling Water Analysis": {
260
+ name: string;
261
+ key: ENUM_ASSET_PARAMETERS;
262
+ waterSystem: WATER_SYSTEMS_NAME;
263
+ }[];
264
+ "Cooling Water Chemistry": {
265
+ name: string;
266
+ key: ENUM_ASSET_PARAMETERS;
267
+ waterSystem: WATER_SYSTEMS_NAME;
268
+ }[];
269
+ };
270
+ export declare enum COMPONENTS_GROUP_TYPE {
271
+ INFLOW = "Inflow",
272
+ LOSS = "Loss",
273
+ OUTFLOW = "Outflow",
274
+ RECIRCULATED = "Recirculated",
275
+ EMBODIED = "Embodied",
276
+ INFLOW_VALUE = "InFlowValue",
277
+ OUTFLOW_VALUE = "OutFlowValue",
278
+ LOSS_VALUE = "LossValue",
279
+ RECIRCULATED_VALUE = "RecirculatedValue"
280
+ }
281
+ export declare const ATO_COMPONENTS_GROUP_DATA: {
282
+ WaterStorageTanks: {
283
+ nodeDataArray: ({
284
+ key: number;
285
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
286
+ name: string;
287
+ value: string;
288
+ color: AtoGojsEditorModel.ENUM_COLORS;
289
+ group: number;
290
+ loc: string;
291
+ colorValue?: undefined;
292
+ isGroup?: undefined;
293
+ } | {
294
+ key: number;
295
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
296
+ name: string;
297
+ value: string;
298
+ color: AtoGojsEditorModel.ENUM_COLORS;
299
+ group: number;
300
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
301
+ loc: string;
302
+ isGroup?: undefined;
303
+ } | {
304
+ key: number;
305
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
306
+ group: number;
307
+ loc: string;
308
+ name?: undefined;
309
+ value?: undefined;
310
+ color?: undefined;
311
+ colorValue?: undefined;
312
+ isGroup?: undefined;
313
+ } | {
314
+ key: number;
315
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
316
+ isGroup: boolean;
317
+ name: string;
318
+ value?: undefined;
319
+ color?: undefined;
320
+ group?: undefined;
321
+ loc?: undefined;
322
+ colorValue?: undefined;
323
+ })[];
324
+ linkDataArray: {
325
+ from: number;
326
+ to: number;
327
+ color: AtoGojsEditorModel.ENUM_COLORS;
328
+ }[];
329
+ };
330
+ WaterTreatmentProcesses: {
331
+ nodeDataArray: ({
332
+ key: number;
333
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
334
+ name: string;
335
+ value: string;
336
+ color: AtoGojsEditorModel.ENUM_COLORS;
337
+ group: number;
338
+ loc: string;
339
+ colorValue?: undefined;
340
+ isGroup?: undefined;
341
+ } | {
342
+ key: number;
343
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
344
+ name: string;
345
+ value: string;
346
+ color: AtoGojsEditorModel.ENUM_COLORS;
347
+ group: number;
348
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
349
+ loc: string;
350
+ isGroup?: undefined;
351
+ } | {
352
+ key: number;
353
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
354
+ group: number;
355
+ loc: string;
356
+ name?: undefined;
357
+ value?: undefined;
358
+ color?: undefined;
359
+ colorValue?: undefined;
360
+ isGroup?: undefined;
361
+ } | {
362
+ key: number;
363
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
364
+ isGroup: boolean;
365
+ name: string;
366
+ value?: undefined;
367
+ color?: undefined;
368
+ group?: undefined;
369
+ loc?: undefined;
370
+ colorValue?: undefined;
371
+ })[];
372
+ linkDataArray: ({
373
+ from: number;
374
+ to: number;
375
+ color: AtoGojsEditorModel.ENUM_COLORS;
376
+ fromPort?: undefined;
377
+ toPort?: undefined;
378
+ } | {
379
+ from: number;
380
+ to: number;
381
+ color: AtoGojsEditorModel.ENUM_COLORS;
382
+ fromPort: string;
383
+ toPort: string;
384
+ })[];
385
+ };
386
+ DeminWaterTreatments: {
387
+ nodeDataArray: ({
388
+ key: number;
389
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
390
+ name: string;
391
+ value: string;
392
+ color: AtoGojsEditorModel.ENUM_COLORS;
393
+ group: number;
394
+ loc: string;
395
+ colorValue?: undefined;
396
+ isGroup?: undefined;
397
+ } | {
398
+ key: number;
399
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
400
+ name: string;
401
+ value: string;
402
+ color: AtoGojsEditorModel.ENUM_COLORS;
403
+ group: number;
404
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
405
+ loc: string;
406
+ isGroup?: undefined;
407
+ } | {
408
+ key: number;
409
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
410
+ group: number;
411
+ loc: string;
412
+ name?: undefined;
413
+ value?: undefined;
414
+ color?: undefined;
415
+ colorValue?: undefined;
416
+ isGroup?: undefined;
417
+ } | {
418
+ key: number;
419
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
420
+ isGroup: boolean;
421
+ name: string;
422
+ value?: undefined;
423
+ color?: undefined;
424
+ group?: undefined;
425
+ loc?: undefined;
426
+ colorValue?: undefined;
427
+ })[];
428
+ linkDataArray: ({
429
+ from: number;
430
+ to: number;
431
+ color: AtoGojsEditorModel.ENUM_COLORS;
432
+ fromPort?: undefined;
433
+ toPort?: undefined;
434
+ } | {
435
+ from: number;
436
+ to: number;
437
+ color: AtoGojsEditorModel.ENUM_COLORS;
438
+ fromPort: string;
439
+ toPort: string;
440
+ })[];
441
+ };
442
+ ROWaterTreatments: {
443
+ nodeDataArray: ({
444
+ key: number;
445
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
446
+ group: number;
447
+ loc: string;
448
+ selectable: boolean;
449
+ value: string;
450
+ font: string;
451
+ colorValue: string;
452
+ tooltip: string;
453
+ source?: undefined;
454
+ margin?: undefined;
455
+ isGroup?: undefined;
456
+ name?: undefined;
457
+ } | {
458
+ minSizeValue: go.Size;
459
+ selectable: boolean;
460
+ dataTable: {
461
+ key: string;
462
+ name: ENUM_ASSET_PARAMETERS;
463
+ value: string;
464
+ isEditable: boolean;
465
+ }[];
466
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
467
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
468
+ key: number;
469
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
470
+ group: number;
471
+ loc: string;
472
+ padding: go.Margin;
473
+ value?: undefined;
474
+ font?: undefined;
475
+ colorValue?: undefined;
476
+ tooltip?: undefined;
477
+ source?: undefined;
478
+ margin?: undefined;
479
+ isGroup?: undefined;
480
+ name?: undefined;
481
+ } | {
482
+ minSizeValue: go.Size;
483
+ selectable: boolean;
484
+ dataTable: {
485
+ key: string;
486
+ name: ENUM_ASSET_PARAMETERS;
487
+ value: string;
488
+ isEditable: boolean;
489
+ }[];
490
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
491
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
492
+ key: number;
493
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
494
+ group: number;
495
+ loc: string;
496
+ value?: undefined;
497
+ font?: undefined;
498
+ colorValue?: undefined;
499
+ tooltip?: undefined;
500
+ source?: undefined;
501
+ margin?: undefined;
502
+ isGroup?: undefined;
503
+ name?: undefined;
504
+ } | {
505
+ key: number;
506
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
507
+ source: string;
508
+ group: number;
509
+ loc: string;
510
+ margin: go.Margin;
511
+ selectable: boolean;
512
+ value?: undefined;
513
+ font?: undefined;
514
+ colorValue?: undefined;
515
+ tooltip?: undefined;
516
+ isGroup?: undefined;
517
+ name?: undefined;
518
+ } | {
519
+ key: number;
520
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
521
+ isGroup: boolean;
522
+ name: string;
523
+ loc: string;
524
+ selectable: boolean;
525
+ group?: undefined;
526
+ value?: undefined;
527
+ font?: undefined;
528
+ colorValue?: undefined;
529
+ tooltip?: undefined;
530
+ source?: undefined;
531
+ margin?: undefined;
532
+ })[];
533
+ linkDataArray: never[];
534
+ };
535
+ GenericProcesses: {
536
+ nodeDataArray: ({
537
+ key: number;
538
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
539
+ name: string;
540
+ value: string;
541
+ color: AtoGojsEditorModel.ENUM_COLORS;
542
+ group: number;
543
+ loc: string;
544
+ colorValue?: undefined;
545
+ isGroup?: undefined;
546
+ } | {
547
+ key: number;
548
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
549
+ name: string;
550
+ value: string;
551
+ color: AtoGojsEditorModel.ENUM_COLORS;
552
+ group: number;
553
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
554
+ loc: string;
555
+ isGroup?: undefined;
556
+ } | {
557
+ key: number;
558
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
559
+ group: number;
560
+ loc: string;
561
+ name?: undefined;
562
+ value?: undefined;
563
+ color?: undefined;
564
+ colorValue?: undefined;
565
+ isGroup?: undefined;
566
+ } | {
567
+ key: number;
568
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
569
+ isGroup: boolean;
570
+ name: string;
571
+ value?: undefined;
572
+ color?: undefined;
573
+ group?: undefined;
574
+ loc?: undefined;
575
+ colorValue?: undefined;
576
+ })[];
577
+ linkDataArray: ({
578
+ from: number;
579
+ to: number;
580
+ color: AtoGojsEditorModel.ENUM_COLORS;
581
+ fromPort?: undefined;
582
+ toPort?: undefined;
583
+ } | {
584
+ from: number;
585
+ to: number;
586
+ color: AtoGojsEditorModel.ENUM_COLORS;
587
+ fromPort: string;
588
+ toPort: string;
589
+ })[];
590
+ };
591
+ WasteWaterTreatmentProcesses: {
592
+ nodeDataArray: ({
593
+ key: number;
594
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
595
+ name: string;
596
+ value: string;
597
+ color: AtoGojsEditorModel.ENUM_COLORS;
598
+ group: number;
599
+ loc: string;
600
+ colorValue?: undefined;
601
+ isGroup?: undefined;
602
+ } | {
603
+ key: number;
604
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
605
+ name: string;
606
+ value: string;
607
+ color: AtoGojsEditorModel.ENUM_COLORS;
608
+ group: number;
609
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
610
+ loc: string;
611
+ isGroup?: undefined;
612
+ } | {
613
+ key: number;
614
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
615
+ group: number;
616
+ loc: string;
617
+ name?: undefined;
618
+ value?: undefined;
619
+ color?: undefined;
620
+ colorValue?: undefined;
621
+ isGroup?: undefined;
622
+ } | {
623
+ key: number;
624
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
625
+ isGroup: boolean;
626
+ name: string;
627
+ value?: undefined;
628
+ color?: undefined;
629
+ group?: undefined;
630
+ loc?: undefined;
631
+ colorValue?: undefined;
632
+ })[];
633
+ linkDataArray: ({
634
+ from: number;
635
+ to: number;
636
+ color: AtoGojsEditorModel.ENUM_COLORS;
637
+ fromPort?: undefined;
638
+ toPort?: undefined;
639
+ } | {
640
+ from: number;
641
+ to: number;
642
+ color: AtoGojsEditorModel.ENUM_COLORS;
643
+ fromPort: string;
644
+ toPort: string;
645
+ })[];
646
+ };
647
+ DAFWasteWaterTreatments: {
648
+ nodeDataArray: ({
649
+ key: number;
650
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
651
+ name: string;
652
+ value: string;
653
+ color: AtoGojsEditorModel.ENUM_COLORS;
654
+ group: number;
655
+ loc: string;
656
+ colorValue?: undefined;
657
+ isGroup?: undefined;
658
+ } | {
659
+ key: number;
660
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
661
+ name: string;
662
+ value: string;
663
+ color: AtoGojsEditorModel.ENUM_COLORS;
664
+ group: number;
665
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
666
+ loc: string;
667
+ isGroup?: undefined;
668
+ } | {
669
+ key: number;
670
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
671
+ group: number;
672
+ loc: string;
673
+ name?: undefined;
674
+ value?: undefined;
675
+ color?: undefined;
676
+ colorValue?: undefined;
677
+ isGroup?: undefined;
678
+ } | {
679
+ key: number;
680
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
681
+ isGroup: boolean;
682
+ name: string;
683
+ value?: undefined;
684
+ color?: undefined;
685
+ group?: undefined;
686
+ loc?: undefined;
687
+ colorValue?: undefined;
688
+ })[];
689
+ linkDataArray: ({
690
+ from: number;
691
+ to: number;
692
+ color: AtoGojsEditorModel.ENUM_COLORS;
693
+ fromPort?: undefined;
694
+ toPort?: undefined;
695
+ } | {
696
+ from: number;
697
+ to: number;
698
+ color: AtoGojsEditorModel.ENUM_COLORS;
699
+ fromPort: string;
700
+ toPort: string;
701
+ })[];
702
+ };
703
+ ETPWasteWaterTreatments: {
704
+ nodeDataArray: ({
705
+ key: number;
706
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
707
+ name: string;
708
+ value: string;
709
+ color: AtoGojsEditorModel.ENUM_COLORS;
710
+ group: number;
711
+ loc: string;
712
+ colorValue?: undefined;
713
+ isGroup?: undefined;
714
+ } | {
715
+ key: number;
716
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
717
+ name: string;
718
+ value: string;
719
+ color: AtoGojsEditorModel.ENUM_COLORS;
720
+ group: number;
721
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
722
+ loc: string;
723
+ isGroup?: undefined;
724
+ } | {
725
+ key: number;
726
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
727
+ group: number;
728
+ loc: string;
729
+ name?: undefined;
730
+ value?: undefined;
731
+ color?: undefined;
732
+ colorValue?: undefined;
733
+ isGroup?: undefined;
734
+ } | {
735
+ key: number;
736
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
737
+ isGroup: boolean;
738
+ name: string;
739
+ value?: undefined;
740
+ color?: undefined;
741
+ group?: undefined;
742
+ loc?: undefined;
743
+ colorValue?: undefined;
744
+ })[];
745
+ linkDataArray: ({
746
+ from: number;
747
+ to: number;
748
+ color: AtoGojsEditorModel.ENUM_COLORS;
749
+ fromPort?: undefined;
750
+ toPort?: undefined;
751
+ } | {
752
+ from: number;
753
+ to: number;
754
+ color: AtoGojsEditorModel.ENUM_COLORS;
755
+ fromPort: string;
756
+ toPort: string;
757
+ })[];
758
+ };
759
+ MBRWasteWaterTreatments: {
760
+ nodeDataArray: ({
761
+ key: number;
762
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
763
+ name: string;
764
+ value: string;
765
+ color: AtoGojsEditorModel.ENUM_COLORS;
766
+ group: number;
767
+ loc: string;
768
+ colorValue?: undefined;
769
+ isGroup?: undefined;
770
+ } | {
771
+ key: number;
772
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
773
+ name: string;
774
+ value: string;
775
+ color: AtoGojsEditorModel.ENUM_COLORS;
776
+ group: number;
777
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
778
+ loc: string;
779
+ isGroup?: undefined;
780
+ } | {
781
+ key: number;
782
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
783
+ group: number;
784
+ loc: string;
785
+ name?: undefined;
786
+ value?: undefined;
787
+ color?: undefined;
788
+ colorValue?: undefined;
789
+ isGroup?: undefined;
790
+ } | {
791
+ key: number;
792
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
793
+ isGroup: boolean;
794
+ name: string;
795
+ value?: undefined;
796
+ color?: undefined;
797
+ group?: undefined;
798
+ loc?: undefined;
799
+ colorValue?: undefined;
800
+ })[];
801
+ linkDataArray: ({
802
+ from: number;
803
+ to: number;
804
+ color: AtoGojsEditorModel.ENUM_COLORS;
805
+ fromPort?: undefined;
806
+ toPort?: undefined;
807
+ } | {
808
+ from: number;
809
+ to: number;
810
+ color: AtoGojsEditorModel.ENUM_COLORS;
811
+ fromPort: string;
812
+ toPort: string;
813
+ })[];
814
+ };
815
+ ZLDWasteWaterTreatments: {
816
+ nodeDataArray: ({
817
+ key: number;
818
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
819
+ name: string;
820
+ value: string;
821
+ color: AtoGojsEditorModel.ENUM_COLORS;
822
+ group: number;
823
+ loc: string;
824
+ colorValue?: undefined;
825
+ isGroup?: undefined;
826
+ } | {
827
+ key: number;
828
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
829
+ name: string;
830
+ value: string;
831
+ color: AtoGojsEditorModel.ENUM_COLORS;
832
+ group: number;
833
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
834
+ loc: string;
835
+ isGroup?: undefined;
836
+ } | {
837
+ key: number;
838
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
839
+ group: number;
840
+ loc: string;
841
+ name?: undefined;
842
+ value?: undefined;
843
+ color?: undefined;
844
+ colorValue?: undefined;
845
+ isGroup?: undefined;
846
+ } | {
847
+ key: number;
848
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
849
+ isGroup: boolean;
850
+ name: string;
851
+ value?: undefined;
852
+ color?: undefined;
853
+ group?: undefined;
854
+ loc?: undefined;
855
+ colorValue?: undefined;
856
+ })[];
857
+ linkDataArray: ({
858
+ from: number;
859
+ to: number;
860
+ color: AtoGojsEditorModel.ENUM_COLORS;
861
+ fromPort?: undefined;
862
+ toPort?: undefined;
863
+ } | {
864
+ from: number;
865
+ to: number;
866
+ color: AtoGojsEditorModel.ENUM_COLORS;
867
+ fromPort: string;
868
+ toPort: string;
869
+ })[];
870
+ };
871
+ DomesticUse: {
872
+ nodeDataArray: ({
873
+ key: number;
874
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
875
+ name: string;
876
+ value: string;
877
+ color: AtoGojsEditorModel.ENUM_COLORS;
878
+ group: number;
879
+ loc: string;
880
+ colorValue?: undefined;
881
+ isGroup?: undefined;
882
+ } | {
883
+ key: number;
884
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
885
+ name: string;
886
+ value: string;
887
+ color: AtoGojsEditorModel.ENUM_COLORS;
888
+ group: number;
889
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
890
+ loc: string;
891
+ isGroup?: undefined;
892
+ } | {
893
+ key: number;
894
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
895
+ group: number;
896
+ loc: string;
897
+ name?: undefined;
898
+ value?: undefined;
899
+ color?: undefined;
900
+ colorValue?: undefined;
901
+ isGroup?: undefined;
902
+ } | {
903
+ key: number;
904
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
905
+ isGroup: boolean;
906
+ name: string;
907
+ value?: undefined;
908
+ color?: undefined;
909
+ group?: undefined;
910
+ loc?: undefined;
911
+ colorValue?: undefined;
912
+ })[];
913
+ linkDataArray: {
914
+ from: number;
915
+ to: number;
916
+ color: AtoGojsEditorModel.ENUM_COLORS;
917
+ }[];
918
+ };
919
+ CoolingTowers: {
920
+ nodeDataArray: ({
921
+ key: number;
922
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
923
+ group: number;
924
+ loc: string;
925
+ data: {
926
+ quantity: number;
927
+ unit: string;
928
+ };
929
+ name: string;
930
+ color: string;
931
+ source?: undefined;
932
+ margin?: undefined;
933
+ selectable?: undefined;
934
+ isGroup?: undefined;
935
+ } | {
936
+ minSizeValue: go.Size;
937
+ selectable: boolean;
938
+ dataTable: {
939
+ value: string;
940
+ isEditable: boolean;
941
+ maxSizeValue: number;
942
+ name: string;
943
+ key: ENUM_ASSET_PARAMETERS;
944
+ waterSystem: WATER_SYSTEMS_NAME;
945
+ }[];
946
+ title: WATER_SYSTEMS_NAME;
947
+ color: AtoGojsEditorModel.ENUM_COLORS;
948
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
949
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
950
+ key: number;
951
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
952
+ group: number;
953
+ loc: string;
954
+ padding: go.Margin;
955
+ data?: undefined;
956
+ name?: undefined;
957
+ source?: undefined;
958
+ margin?: undefined;
959
+ isGroup?: undefined;
960
+ } | {
961
+ key: number;
962
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
963
+ source: string;
964
+ group: number;
965
+ loc: string;
966
+ margin: go.Margin;
967
+ selectable: boolean;
968
+ data?: undefined;
969
+ name?: undefined;
970
+ color?: undefined;
971
+ isGroup?: undefined;
972
+ } | {
973
+ key: number;
974
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
975
+ isGroup: boolean;
976
+ name: string;
977
+ group?: undefined;
978
+ loc?: undefined;
979
+ data?: undefined;
980
+ color?: undefined;
981
+ source?: undefined;
982
+ margin?: undefined;
983
+ selectable?: undefined;
984
+ })[];
985
+ linkDataArray: never[];
986
+ };
987
+ Boilers: {
988
+ nodeDataArray: ({
989
+ key: number;
990
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
991
+ source: string;
992
+ group: number;
993
+ loc: string;
994
+ margin: go.Margin;
995
+ selectable: boolean;
996
+ width: number;
997
+ height: number;
998
+ data?: undefined;
999
+ name?: undefined;
1000
+ color?: undefined;
1001
+ isGroup?: undefined;
1002
+ } | {
1003
+ key: number;
1004
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1005
+ group: number;
1006
+ loc: string;
1007
+ data: {
1008
+ quantity: number;
1009
+ unit: string;
1010
+ };
1011
+ name: COMPONENTS_GROUP_TYPE;
1012
+ color: string;
1013
+ source?: undefined;
1014
+ margin?: undefined;
1015
+ selectable?: undefined;
1016
+ width?: undefined;
1017
+ height?: undefined;
1018
+ isGroup?: undefined;
1019
+ } | {
1020
+ key: number;
1021
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1022
+ isGroup: boolean;
1023
+ name: string;
1024
+ loc: string;
1025
+ selectable: boolean;
1026
+ source?: undefined;
1027
+ group?: undefined;
1028
+ margin?: undefined;
1029
+ width?: undefined;
1030
+ height?: undefined;
1031
+ data?: undefined;
1032
+ color?: undefined;
1033
+ })[];
1034
+ linkDataArray: never[];
1035
+ };
1036
+ OtherWaterUse: {
1037
+ nodeDataArray: ({
1038
+ key: number;
1039
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1040
+ name: string;
1041
+ value: string;
1042
+ color: AtoGojsEditorModel.ENUM_COLORS;
1043
+ group: number;
1044
+ loc: string;
1045
+ colorValue?: undefined;
1046
+ isGroup?: undefined;
1047
+ } | {
1048
+ key: number;
1049
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1050
+ name: string;
1051
+ value: string;
1052
+ color: AtoGojsEditorModel.ENUM_COLORS;
1053
+ group: number;
1054
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
1055
+ loc: string;
1056
+ isGroup?: undefined;
1057
+ } | {
1058
+ key: number;
1059
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1060
+ group: number;
1061
+ loc: string;
1062
+ name?: undefined;
1063
+ value?: undefined;
1064
+ color?: undefined;
1065
+ colorValue?: undefined;
1066
+ isGroup?: undefined;
1067
+ } | {
1068
+ key: number;
1069
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1070
+ isGroup: boolean;
1071
+ name: string;
1072
+ value?: undefined;
1073
+ color?: undefined;
1074
+ group?: undefined;
1075
+ loc?: undefined;
1076
+ colorValue?: undefined;
1077
+ })[];
1078
+ linkDataArray: {
1079
+ from: number;
1080
+ to: number;
1081
+ color: AtoGojsEditorModel.ENUM_COLORS;
1082
+ }[];
1083
+ };
1084
+ IrrigationUse: {
1085
+ nodeDataArray: ({
1086
+ key: number;
1087
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1088
+ name: string;
1089
+ value: string;
1090
+ color: AtoGojsEditorModel.ENUM_COLORS;
1091
+ group: number;
1092
+ loc: string;
1093
+ colorValue?: undefined;
1094
+ isGroup?: undefined;
1095
+ } | {
1096
+ key: number;
1097
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1098
+ name: string;
1099
+ value: string;
1100
+ color: AtoGojsEditorModel.ENUM_COLORS;
1101
+ group: number;
1102
+ colorValue: AtoGojsEditorModel.ENUM_COLORS;
1103
+ loc: string;
1104
+ isGroup?: undefined;
1105
+ } | {
1106
+ key: number;
1107
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1108
+ group: number;
1109
+ loc: string;
1110
+ name?: undefined;
1111
+ value?: undefined;
1112
+ color?: undefined;
1113
+ colorValue?: undefined;
1114
+ isGroup?: undefined;
1115
+ } | {
1116
+ key: number;
1117
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1118
+ isGroup: boolean;
1119
+ name: string;
1120
+ value?: undefined;
1121
+ color?: undefined;
1122
+ group?: undefined;
1123
+ loc?: undefined;
1124
+ colorValue?: undefined;
1125
+ })[];
1126
+ linkDataArray: {
1127
+ from: number;
1128
+ to: number;
1129
+ color: AtoGojsEditorModel.ENUM_COLORS;
1130
+ }[];
1131
+ };
1132
+ };