ato-water-lib 0.0.101 → 0.0.103
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/components/asset-flow/asset-flow.component.mjs +3 -3
- package/esm2020/lib/constants/components-group-const.mjs +101 -48
- package/fesm2015/ato-water-lib.mjs +90 -40
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +102 -49
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/constants/components-group-const.d.ts +186 -509
- package/package.json +1 -1
@@ -1,5 +1,9 @@
|
|
1
1
|
import * as go from 'gojs';
|
2
2
|
import { AtoGojsEditorModel } from '../models/gojs-editor.model';
|
3
|
+
export declare enum ATO_MAPPER_FROM {
|
4
|
+
INDICATOR = "Indicator",
|
5
|
+
NORMAL = "Nomarl"
|
6
|
+
}
|
3
7
|
export declare enum ENUM_ASSET_PARAMETERS {
|
4
8
|
FEED_FLOW_RATE = "Feed Flow Rate",
|
5
9
|
FEED_CONDUCTIVITY = "Feed Conductivity",
|
@@ -82,7 +86,7 @@ export declare enum ENUM_ASSET_PARAMETERS {
|
|
82
86
|
NORMALIZED_REJECTION_RATE = "Normalized Rejection Rate",
|
83
87
|
COMMON_RANGE = "Range",
|
84
88
|
COMMON_APPROACH = "Approach",
|
85
|
-
COMMON_WET_BULB_TEMPERATURE = "
|
89
|
+
COMMON_WET_BULB_TEMPERATURE = "Wet Bulb Temperature",
|
86
90
|
COMMON_FAN_SPEED = "Fan Speed",
|
87
91
|
COMMON_RETURN_TEMPERATURE = "Return Temperature",
|
88
92
|
COMMON_SUPPLY_TEMPERATURE = "Supply Temperature",
|
@@ -187,471 +191,16 @@ export declare enum WATER_SYSTEMS_NAME {
|
|
187
191
|
DESIGN_PARAMETERS = "Design Parameters",
|
188
192
|
SYSTEM_KPIS__COOLING_TOWER__PERFORMANCE = "System KPIs"
|
189
193
|
}
|
190
|
-
export declare const DATA_ASSET_PARAMETER_FIELDS: {
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
name: ENUM_ASSET_PARAMETERS;
|
201
|
-
key: ENUM_ASSET_PARAMETERS;
|
202
|
-
};
|
203
|
-
"Primary Pressure": {
|
204
|
-
name: ENUM_ASSET_PARAMETERS;
|
205
|
-
key: ENUM_ASSET_PARAMETERS;
|
206
|
-
};
|
207
|
-
"Rejection Rate/Salt Passage": {
|
208
|
-
name: ENUM_ASSET_PARAMETERS;
|
209
|
-
key: ENUM_ASSET_PARAMETERS;
|
210
|
-
};
|
211
|
-
"Pressure Drop": {
|
212
|
-
name: ENUM_ASSET_PARAMETERS;
|
213
|
-
key: ENUM_ASSET_PARAMETERS;
|
214
|
-
};
|
215
|
-
"System Recovery Rate": {
|
216
|
-
name: ENUM_ASSET_PARAMETERS;
|
217
|
-
key: ENUM_ASSET_PARAMETERS;
|
218
|
-
};
|
219
|
-
"Permeate Flow Rate": {
|
220
|
-
name: ENUM_ASSET_PARAMETERS;
|
221
|
-
key: ENUM_ASSET_PARAMETERS;
|
222
|
-
};
|
223
|
-
"Permeate Conductivity": {
|
224
|
-
name: ENUM_ASSET_PARAMETERS;
|
225
|
-
key: ENUM_ASSET_PARAMETERS;
|
226
|
-
};
|
227
|
-
"Permeate Pressure": {
|
228
|
-
name: ENUM_ASSET_PARAMETERS;
|
229
|
-
key: ENUM_ASSET_PARAMETERS;
|
230
|
-
};
|
231
|
-
"Concentrate Flow Rate": {
|
232
|
-
name: ENUM_ASSET_PARAMETERS;
|
233
|
-
key: ENUM_ASSET_PARAMETERS;
|
234
|
-
};
|
235
|
-
"Stage2 Concentrate Pressure": {
|
236
|
-
name: ENUM_ASSET_PARAMETERS;
|
237
|
-
key: ENUM_ASSET_PARAMETERS;
|
238
|
-
};
|
239
|
-
"Concentrate Conductivity": {
|
240
|
-
name: ENUM_ASSET_PARAMETERS;
|
241
|
-
key: ENUM_ASSET_PARAMETERS;
|
242
|
-
};
|
243
|
-
MakeupWaterFlowRate: {
|
244
|
-
name: string;
|
245
|
-
key: ENUM_ASSET_PARAMETERS;
|
246
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
247
|
-
};
|
248
|
-
MakeupWaterFlow: {
|
249
|
-
name: string;
|
250
|
-
key: ENUM_ASSET_PARAMETERS;
|
251
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
252
|
-
};
|
253
|
-
MakeupWaterConductivity: {
|
254
|
-
name: string;
|
255
|
-
key: ENUM_ASSET_PARAMETERS;
|
256
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
257
|
-
};
|
258
|
-
MakeupWaterpH: {
|
259
|
-
name: string;
|
260
|
-
key: ENUM_ASSET_PARAMETERS;
|
261
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
262
|
-
};
|
263
|
-
MakeupWaterCalcium: {
|
264
|
-
name: string;
|
265
|
-
key: ENUM_ASSET_PARAMETERS;
|
266
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
267
|
-
};
|
268
|
-
MakeupWaterTotalIron: {
|
269
|
-
name: string;
|
270
|
-
key: ENUM_ASSET_PARAMETERS;
|
271
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
272
|
-
};
|
273
|
-
EvaporationLossFlowRate: {
|
274
|
-
name: string;
|
275
|
-
key: ENUM_ASSET_PARAMETERS;
|
276
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
277
|
-
};
|
278
|
-
EvaporationLossFlow: {
|
279
|
-
name: string;
|
280
|
-
key: ENUM_ASSET_PARAMETERS;
|
281
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
282
|
-
};
|
283
|
-
BlowdownWaterFlowRate: {
|
284
|
-
name: string;
|
285
|
-
key: ENUM_ASSET_PARAMETERS;
|
286
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
287
|
-
};
|
288
|
-
BlowdownWaterFlow: {
|
289
|
-
name: string;
|
290
|
-
key: ENUM_ASSET_PARAMETERS;
|
291
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
292
|
-
};
|
293
|
-
WarmerWaterFlowRate: {
|
294
|
-
name: string;
|
295
|
-
key: ENUM_ASSET_PARAMETERS;
|
296
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
297
|
-
};
|
298
|
-
WarmerWaterFlow: {
|
299
|
-
name: string;
|
300
|
-
key: ENUM_ASSET_PARAMETERS;
|
301
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
302
|
-
};
|
303
|
-
AnalysisConductivity: {
|
304
|
-
name: string;
|
305
|
-
key: ENUM_ASSET_PARAMETERS;
|
306
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
307
|
-
};
|
308
|
-
AnalysispH: {
|
309
|
-
name: string;
|
310
|
-
key: ENUM_ASSET_PARAMETERS;
|
311
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
312
|
-
};
|
313
|
-
AnalysisCalcium: {
|
314
|
-
name: string;
|
315
|
-
key: ENUM_ASSET_PARAMETERS;
|
316
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
317
|
-
};
|
318
|
-
AnalysisTotalIron: {
|
319
|
-
name: string;
|
320
|
-
key: ENUM_ASSET_PARAMETERS;
|
321
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
322
|
-
};
|
323
|
-
ChemistryPhosphate: {
|
324
|
-
name: string;
|
325
|
-
key: ENUM_ASSET_PARAMETERS;
|
326
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
327
|
-
};
|
328
|
-
ChemistryChlorine: {
|
329
|
-
name: string;
|
330
|
-
key: ENUM_ASSET_PARAMETERS;
|
331
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
332
|
-
};
|
333
|
-
ChemistrySTPResidual: {
|
334
|
-
name: string;
|
335
|
-
key: ENUM_ASSET_PARAMETERS;
|
336
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
337
|
-
};
|
338
|
-
ChemistryCSCorrosion: {
|
339
|
-
name: string;
|
340
|
-
key: ENUM_ASSET_PARAMETERS;
|
341
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
342
|
-
};
|
343
|
-
KpiCycles: {
|
344
|
-
name: string;
|
345
|
-
key: ENUM_ASSET_PARAMETERS;
|
346
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
347
|
-
};
|
348
|
-
"Bacteria #": {
|
349
|
-
name: ENUM_ASSET_PARAMETERS;
|
350
|
-
key: ENUM_ASSET_PARAMETERS;
|
351
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
352
|
-
};
|
353
|
-
"Specific Conductivity": {
|
354
|
-
name: ENUM_ASSET_PARAMETERS;
|
355
|
-
key: ENUM_ASSET_PARAMETERS;
|
356
|
-
};
|
357
|
-
pH: {
|
358
|
-
name: ENUM_ASSET_PARAMETERS;
|
359
|
-
key: ENUM_ASSET_PARAMETERS;
|
360
|
-
};
|
361
|
-
Silica: {
|
362
|
-
name: ENUM_ASSET_PARAMETERS;
|
363
|
-
key: ENUM_ASSET_PARAMETERS;
|
364
|
-
};
|
365
|
-
"Total Iron": {
|
366
|
-
name: ENUM_ASSET_PARAMETERS;
|
367
|
-
key: ENUM_ASSET_PARAMETERS;
|
368
|
-
};
|
369
|
-
Phosphate: {
|
370
|
-
name: ENUM_ASSET_PARAMETERS;
|
371
|
-
key: ENUM_ASSET_PARAMETERS;
|
372
|
-
};
|
373
|
-
Molybdate: {
|
374
|
-
name: ENUM_ASSET_PARAMETERS;
|
375
|
-
key: ENUM_ASSET_PARAMETERS;
|
376
|
-
};
|
377
|
-
"M-Alkalinity": {
|
378
|
-
name: ENUM_ASSET_PARAMETERS;
|
379
|
-
key: ENUM_ASSET_PARAMETERS;
|
380
|
-
};
|
381
|
-
"Cationic Conductivity": {
|
382
|
-
name: ENUM_ASSET_PARAMETERS;
|
383
|
-
key: ENUM_ASSET_PARAMETERS;
|
384
|
-
};
|
385
|
-
Cycles: {
|
386
|
-
name: ENUM_ASSET_PARAMETERS;
|
387
|
-
key: ENUM_ASSET_PARAMETERS;
|
388
|
-
};
|
389
|
-
"Soluble Iron": {
|
390
|
-
name: ENUM_ASSET_PARAMETERS;
|
391
|
-
key: ENUM_ASSET_PARAMETERS;
|
392
|
-
};
|
393
|
-
"Internal Treatment Phosphate": {
|
394
|
-
name: ENUM_ASSET_PARAMETERS;
|
395
|
-
key: ENUM_ASSET_PARAMETERS;
|
396
|
-
};
|
397
|
-
Flow: {
|
398
|
-
name: ENUM_ASSET_PARAMETERS;
|
399
|
-
key: ENUM_ASSET_PARAMETERS;
|
400
|
-
};
|
401
|
-
"Flow Rate": {
|
402
|
-
name: ENUM_ASSET_PARAMETERS;
|
403
|
-
key: ENUM_ASSET_PARAMETERS;
|
404
|
-
};
|
405
|
-
"pH in Steam": {
|
406
|
-
name: ENUM_ASSET_PARAMETERS;
|
407
|
-
key: ENUM_ASSET_PARAMETERS;
|
408
|
-
};
|
409
|
-
"Cationic Conductivity in Steam": {
|
410
|
-
name: ENUM_ASSET_PARAMETERS;
|
411
|
-
key: ENUM_ASSET_PARAMETERS;
|
412
|
-
};
|
413
|
-
"Si in Steam": {
|
414
|
-
name: ENUM_ASSET_PARAMETERS;
|
415
|
-
key: ENUM_ASSET_PARAMETERS;
|
416
|
-
};
|
417
|
-
"Si in Boiler": {
|
418
|
-
name: ENUM_ASSET_PARAMETERS;
|
419
|
-
key: ENUM_ASSET_PARAMETERS;
|
420
|
-
};
|
421
|
-
"pH in Boiler": {
|
422
|
-
name: ENUM_ASSET_PARAMETERS;
|
423
|
-
key: ENUM_ASSET_PARAMETERS;
|
424
|
-
};
|
425
|
-
"Permeability BP (TC)": {
|
426
|
-
name: ENUM_ASSET_PARAMETERS;
|
427
|
-
key: ENUM_ASSET_PARAMETERS;
|
428
|
-
};
|
429
|
-
"Permeate Flux": {
|
430
|
-
name: ENUM_ASSET_PARAMETERS;
|
431
|
-
key: ENUM_ASSET_PARAMETERS;
|
432
|
-
};
|
433
|
-
Flow_UF_TMP_Before_Back_Pulse: {
|
434
|
-
name: string;
|
435
|
-
key: ENUM_ASSET_PARAMETERS;
|
436
|
-
waterSystem: WATER_SYSTEMS_NAME;
|
437
|
-
};
|
438
|
-
Flow_UF_TMP_After_Back_Pulse: {
|
439
|
-
name: string;
|
440
|
-
key: ENUM_ASSET_PARAMETERS;
|
441
|
-
};
|
442
|
-
Flow_Backpulse_FlowRate: {
|
443
|
-
name: string;
|
444
|
-
key: ENUM_ASSET_PARAMETERS;
|
445
|
-
};
|
446
|
-
Flow_Backpulse_TMP: {
|
447
|
-
name: string;
|
448
|
-
key: ENUM_ASSET_PARAMETERS;
|
449
|
-
};
|
450
|
-
Flow_Permeate_FlowRate: {
|
451
|
-
name: string;
|
452
|
-
key: ENUM_ASSET_PARAMETERS;
|
453
|
-
};
|
454
|
-
Flow_Feed_FlowRate: {
|
455
|
-
name: string;
|
456
|
-
key: ENUM_ASSET_PARAMETERS;
|
457
|
-
};
|
458
|
-
Chemistry_SystemKPIs_Permeate_Turbidity: {
|
459
|
-
name: string;
|
460
|
-
key: ENUM_ASSET_PARAMETERS;
|
461
|
-
};
|
462
|
-
Chemistry_UF_System_Recovery: {
|
463
|
-
name: string;
|
464
|
-
key: ENUM_ASSET_PARAMETERS;
|
465
|
-
};
|
466
|
-
Chemistry_UF_Leap_Status: {
|
467
|
-
name: string;
|
468
|
-
key: ENUM_ASSET_PARAMETERS;
|
469
|
-
};
|
470
|
-
Chemistry_Backpulse_FlowRate: {
|
471
|
-
name: string;
|
472
|
-
key: ENUM_ASSET_PARAMETERS;
|
473
|
-
};
|
474
|
-
Chemistry_Backpulse_TMP: {
|
475
|
-
name: string;
|
476
|
-
key: ENUM_ASSET_PARAMETERS;
|
477
|
-
};
|
478
|
-
Chemistry_Permeate_Turbidity: {
|
479
|
-
name: string;
|
480
|
-
key: ENUM_ASSET_PARAMETERS;
|
481
|
-
};
|
482
|
-
Chemistry_Permeate_Temperature: {
|
483
|
-
name: string;
|
484
|
-
key: ENUM_ASSET_PARAMETERS;
|
485
|
-
};
|
486
|
-
Chemistry_Feed_Turbidity: {
|
487
|
-
name: string;
|
488
|
-
key: ENUM_ASSET_PARAMETERS;
|
489
|
-
};
|
490
|
-
"Normalized Pressure Drop": {
|
491
|
-
name: ENUM_ASSET_PARAMETERS;
|
492
|
-
key: ENUM_ASSET_PARAMETERS;
|
493
|
-
};
|
494
|
-
"Normalized Permeate Flow Rate": {
|
495
|
-
name: ENUM_ASSET_PARAMETERS;
|
496
|
-
key: ENUM_ASSET_PARAMETERS;
|
497
|
-
};
|
498
|
-
Pressure: {
|
499
|
-
name: ENUM_ASSET_PARAMETERS;
|
500
|
-
key: ENUM_ASSET_PARAMETERS;
|
501
|
-
};
|
502
|
-
"Differential Pressure": {
|
503
|
-
name: ENUM_ASSET_PARAMETERS;
|
504
|
-
key: ENUM_ASSET_PARAMETERS;
|
505
|
-
};
|
506
|
-
TDS: {
|
507
|
-
name: ENUM_ASSET_PARAMETERS;
|
508
|
-
key: ENUM_ASSET_PARAMETERS;
|
509
|
-
};
|
510
|
-
Conductivity: {
|
511
|
-
name: ENUM_ASSET_PARAMETERS;
|
512
|
-
key: ENUM_ASSET_PARAMETERS;
|
513
|
-
};
|
514
|
-
Temperature: {
|
515
|
-
name: ENUM_ASSET_PARAMETERS;
|
516
|
-
key: ENUM_ASSET_PARAMETERS;
|
517
|
-
};
|
518
|
-
"Rejection Rate": {
|
519
|
-
name: ENUM_ASSET_PARAMETERS;
|
520
|
-
key: ENUM_ASSET_PARAMETERS;
|
521
|
-
};
|
522
|
-
"Normalized Rejection Rate": {
|
523
|
-
name: ENUM_ASSET_PARAMETERS;
|
524
|
-
key: ENUM_ASSET_PARAMETERS;
|
525
|
-
};
|
526
|
-
"Supply Temperature": {
|
527
|
-
name: ENUM_ASSET_PARAMETERS;
|
528
|
-
key: ENUM_ASSET_PARAMETERS;
|
529
|
-
};
|
530
|
-
"Wet Bulb Temperature": {
|
531
|
-
name: ENUM_ASSET_PARAMETERS;
|
532
|
-
key: ENUM_ASSET_PARAMETERS;
|
533
|
-
};
|
534
|
-
VMRange: {
|
535
|
-
name: ENUM_ASSET_PARAMETERS;
|
536
|
-
key: ENUM_ASSET_PARAMETERS;
|
537
|
-
};
|
538
|
-
VMApproach: {
|
539
|
-
name: ENUM_ASSET_PARAMETERS;
|
540
|
-
key: ENUM_ASSET_PARAMETERS;
|
541
|
-
};
|
542
|
-
"Fan Speed": {
|
543
|
-
name: ENUM_ASSET_PARAMETERS;
|
544
|
-
key: ENUM_ASSET_PARAMETERS;
|
545
|
-
};
|
546
|
-
"Recirculation rate": {
|
547
|
-
name: ENUM_ASSET_PARAMETERS;
|
548
|
-
key: ENUM_ASSET_PARAMETERS;
|
549
|
-
};
|
550
|
-
"Return Temperature": {
|
551
|
-
name: ENUM_ASSET_PARAMETERS;
|
552
|
-
key: ENUM_ASSET_PARAMETERS;
|
553
|
-
};
|
554
|
-
"DA Supply Temperature": {
|
555
|
-
name: ENUM_ASSET_PARAMETERS;
|
556
|
-
key: ENUM_ASSET_PARAMETERS;
|
557
|
-
};
|
558
|
-
"DA Wet Bulb Temperature": {
|
559
|
-
name: ENUM_ASSET_PARAMETERS;
|
560
|
-
key: ENUM_ASSET_PARAMETERS;
|
561
|
-
};
|
562
|
-
DARange: {
|
563
|
-
name: ENUM_ASSET_PARAMETERS;
|
564
|
-
key: ENUM_ASSET_PARAMETERS;
|
565
|
-
};
|
566
|
-
DAApproach: {
|
567
|
-
name: ENUM_ASSET_PARAMETERS;
|
568
|
-
key: ENUM_ASSET_PARAMETERS;
|
569
|
-
};
|
570
|
-
"Efficiency Daily Average": {
|
571
|
-
name: ENUM_ASSET_PARAMETERS;
|
572
|
-
key: ENUM_ASSET_PARAMETERS;
|
573
|
-
};
|
574
|
-
"Efficiency Adjusted Daily Average": {
|
575
|
-
name: ENUM_ASSET_PARAMETERS;
|
576
|
-
key: ENUM_ASSET_PARAMETERS;
|
577
|
-
};
|
578
|
-
"L/G Ratio": {
|
579
|
-
name: ENUM_ASSET_PARAMETERS;
|
580
|
-
key: ENUM_ASSET_PARAMETERS;
|
581
|
-
};
|
582
|
-
NTU: {
|
583
|
-
name: ENUM_ASSET_PARAMETERS;
|
584
|
-
key: ENUM_ASSET_PARAMETERS;
|
585
|
-
};
|
586
|
-
"Make Up Water flow rate": {
|
587
|
-
name: ENUM_ASSET_PARAMETERS;
|
588
|
-
key: ENUM_ASSET_PARAMETERS;
|
589
|
-
};
|
590
|
-
"Blowdown Water flow rate": {
|
591
|
-
name: ENUM_ASSET_PARAMETERS;
|
592
|
-
key: ENUM_ASSET_PARAMETERS;
|
593
|
-
};
|
594
|
-
"Water & Energy Consumption Fan Speed": {
|
595
|
-
name: ENUM_ASSET_PARAMETERS;
|
596
|
-
key: ENUM_ASSET_PARAMETERS;
|
597
|
-
};
|
598
|
-
"Chlorine Consumption": {
|
599
|
-
name: ENUM_ASSET_PARAMETERS;
|
600
|
-
key: ENUM_ASSET_PARAMETERS;
|
601
|
-
};
|
602
|
-
"Dispersant Consumption": {
|
603
|
-
name: ENUM_ASSET_PARAMETERS;
|
604
|
-
key: ENUM_ASSET_PARAMETERS;
|
605
|
-
};
|
606
|
-
"Design Recirculation Rate": {
|
607
|
-
name: ENUM_ASSET_PARAMETERS;
|
608
|
-
key: ENUM_ASSET_PARAMETERS;
|
609
|
-
};
|
610
|
-
"Design Wet Bulb Temperature": {
|
611
|
-
name: ENUM_ASSET_PARAMETERS;
|
612
|
-
key: ENUM_ASSET_PARAMETERS;
|
613
|
-
};
|
614
|
-
"Design Supply Temperature": {
|
615
|
-
name: ENUM_ASSET_PARAMETERS;
|
616
|
-
key: ENUM_ASSET_PARAMETERS;
|
617
|
-
};
|
618
|
-
"Design Return Temperature": {
|
619
|
-
name: ENUM_ASSET_PARAMETERS;
|
620
|
-
key: ENUM_ASSET_PARAMETERS;
|
621
|
-
};
|
622
|
-
"Design Range [ manual or Rho ]": {
|
623
|
-
name: ENUM_ASSET_PARAMETERS;
|
624
|
-
key: ENUM_ASSET_PARAMETERS;
|
625
|
-
};
|
626
|
-
"Design Approach [ Manual or Rho ]": {
|
627
|
-
name: ENUM_ASSET_PARAMETERS;
|
628
|
-
key: ENUM_ASSET_PARAMETERS;
|
629
|
-
};
|
630
|
-
"KPIs Return Temperature": {
|
631
|
-
name: ENUM_ASSET_PARAMETERS;
|
632
|
-
key: ENUM_ASSET_PARAMETERS;
|
633
|
-
};
|
634
|
-
"KPIs Supply Temperature": {
|
635
|
-
name: ENUM_ASSET_PARAMETERS;
|
636
|
-
key: ENUM_ASSET_PARAMETERS;
|
637
|
-
};
|
638
|
-
"KPIs Range": {
|
639
|
-
name: ENUM_ASSET_PARAMETERS;
|
640
|
-
key: ENUM_ASSET_PARAMETERS;
|
641
|
-
};
|
642
|
-
"KPIs Approach": {
|
643
|
-
name: ENUM_ASSET_PARAMETERS;
|
644
|
-
key: ENUM_ASSET_PARAMETERS;
|
645
|
-
};
|
646
|
-
"KPIs Efficiency Adjusted Daily Average": {
|
647
|
-
name: string;
|
648
|
-
key: ENUM_ASSET_PARAMETERS;
|
649
|
-
};
|
650
|
-
"KPIs L/G Ratio": {
|
651
|
-
name: ENUM_ASSET_PARAMETERS;
|
652
|
-
key: ENUM_ASSET_PARAMETERS;
|
653
|
-
};
|
654
|
-
};
|
194
|
+
export declare const DATA_ASSET_PARAMETER_FIELDS: Record<string, {
|
195
|
+
name: string;
|
196
|
+
key: string;
|
197
|
+
waterSystem?: string;
|
198
|
+
isEditable?: boolean;
|
199
|
+
value?: any;
|
200
|
+
visible?: boolean;
|
201
|
+
isReadOnly?: boolean;
|
202
|
+
isFrom?: string;
|
203
|
+
}>;
|
655
204
|
export declare const STYLE_TABLE_PARAM: {
|
656
205
|
FLAMINGO: {
|
657
206
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
@@ -940,71 +489,153 @@ export declare const DATA_WATER_SYSTEMS: {
|
|
940
489
|
export declare const ASSET_CATEGORY_PARAMS: {
|
941
490
|
"Evaporation Loss": {
|
942
491
|
name: string;
|
943
|
-
key:
|
944
|
-
waterSystem
|
492
|
+
key: string;
|
493
|
+
waterSystem?: string | undefined;
|
494
|
+
isEditable?: boolean | undefined;
|
495
|
+
value?: any;
|
496
|
+
visible?: boolean | undefined;
|
497
|
+
isReadOnly?: boolean | undefined;
|
498
|
+
isFrom?: string | undefined;
|
945
499
|
}[];
|
946
500
|
"Warmer Water (Recirculation)": {
|
947
501
|
name: string;
|
948
|
-
key:
|
949
|
-
waterSystem
|
502
|
+
key: string;
|
503
|
+
waterSystem?: string | undefined;
|
504
|
+
isEditable?: boolean | undefined;
|
505
|
+
value?: any;
|
506
|
+
visible?: boolean | undefined;
|
507
|
+
isReadOnly?: boolean | undefined;
|
508
|
+
isFrom?: string | undefined;
|
950
509
|
}[];
|
951
510
|
"Makeup Water Flow": {
|
952
511
|
name: string;
|
953
|
-
key:
|
954
|
-
waterSystem
|
512
|
+
key: string;
|
513
|
+
waterSystem?: string | undefined;
|
514
|
+
isEditable?: boolean | undefined;
|
515
|
+
value?: any;
|
516
|
+
visible?: boolean | undefined;
|
517
|
+
isReadOnly?: boolean | undefined;
|
518
|
+
isFrom?: string | undefined;
|
955
519
|
}[];
|
956
520
|
"Makeup Water Chemistry": {
|
957
521
|
name: string;
|
958
|
-
key:
|
959
|
-
waterSystem
|
522
|
+
key: string;
|
523
|
+
waterSystem?: string | undefined;
|
524
|
+
isEditable?: boolean | undefined;
|
525
|
+
value?: any;
|
526
|
+
visible?: boolean | undefined;
|
527
|
+
isReadOnly?: boolean | undefined;
|
528
|
+
isFrom?: string | undefined;
|
960
529
|
}[];
|
961
530
|
"Blowdown Water": {
|
962
531
|
name: string;
|
963
|
-
key:
|
964
|
-
waterSystem
|
532
|
+
key: string;
|
533
|
+
waterSystem?: string | undefined;
|
534
|
+
isEditable?: boolean | undefined;
|
535
|
+
value?: any;
|
536
|
+
visible?: boolean | undefined;
|
537
|
+
isReadOnly?: boolean | undefined;
|
538
|
+
isFrom?: string | undefined;
|
965
539
|
}[];
|
966
540
|
"Cooling Water Analysis": {
|
967
541
|
name: string;
|
968
|
-
key:
|
969
|
-
waterSystem
|
542
|
+
key: string;
|
543
|
+
waterSystem?: string | undefined;
|
544
|
+
isEditable?: boolean | undefined;
|
545
|
+
value?: any;
|
546
|
+
visible?: boolean | undefined;
|
547
|
+
isReadOnly?: boolean | undefined;
|
548
|
+
isFrom?: string | undefined;
|
970
549
|
}[];
|
971
550
|
"Cooling Water Chemistry": {
|
972
551
|
name: string;
|
973
|
-
key:
|
974
|
-
waterSystem
|
552
|
+
key: string;
|
553
|
+
waterSystem?: string | undefined;
|
554
|
+
isEditable?: boolean | undefined;
|
555
|
+
value?: any;
|
556
|
+
visible?: boolean | undefined;
|
557
|
+
isReadOnly?: boolean | undefined;
|
558
|
+
isFrom?: string | undefined;
|
975
559
|
}[];
|
976
560
|
"System KPI's": {
|
977
561
|
name: string;
|
978
|
-
key:
|
979
|
-
waterSystem
|
562
|
+
key: string;
|
563
|
+
waterSystem?: string | undefined;
|
564
|
+
isEditable?: boolean | undefined;
|
565
|
+
value?: any;
|
566
|
+
visible?: boolean | undefined;
|
567
|
+
isReadOnly?: boolean | undefined;
|
568
|
+
isFrom?: string | undefined;
|
980
569
|
}[];
|
981
570
|
"Visual Management": {
|
982
|
-
name:
|
983
|
-
key:
|
571
|
+
name: string;
|
572
|
+
key: string;
|
573
|
+
waterSystem?: string | undefined;
|
574
|
+
isEditable?: boolean | undefined;
|
575
|
+
value?: any;
|
576
|
+
visible?: boolean | undefined;
|
577
|
+
isReadOnly?: boolean | undefined;
|
578
|
+
isFrom?: string | undefined;
|
984
579
|
}[];
|
985
580
|
"Data Analysis": {
|
986
|
-
name:
|
987
|
-
key:
|
581
|
+
name: string;
|
582
|
+
key: string;
|
583
|
+
waterSystem?: string | undefined;
|
584
|
+
isEditable?: boolean | undefined;
|
585
|
+
value?: any;
|
586
|
+
visible?: boolean | undefined;
|
587
|
+
isReadOnly?: boolean | undefined;
|
588
|
+
isFrom?: string | undefined;
|
988
589
|
}[];
|
989
590
|
"Efficiency and Performance": {
|
990
|
-
name:
|
991
|
-
key:
|
591
|
+
name: string;
|
592
|
+
key: string;
|
593
|
+
waterSystem?: string | undefined;
|
594
|
+
isEditable?: boolean | undefined;
|
595
|
+
value?: any;
|
596
|
+
visible?: boolean | undefined;
|
597
|
+
isReadOnly?: boolean | undefined;
|
598
|
+
isFrom?: string | undefined;
|
992
599
|
}[];
|
993
600
|
"Water & Energy Consumption": {
|
994
|
-
name:
|
995
|
-
key:
|
601
|
+
name: string;
|
602
|
+
key: string;
|
603
|
+
waterSystem?: string | undefined;
|
604
|
+
isEditable?: boolean | undefined;
|
605
|
+
value?: any;
|
606
|
+
visible?: boolean | undefined;
|
607
|
+
isReadOnly?: boolean | undefined;
|
608
|
+
isFrom?: string | undefined;
|
996
609
|
}[];
|
997
610
|
"Chemicals consumption": {
|
998
|
-
name:
|
999
|
-
key:
|
611
|
+
name: string;
|
612
|
+
key: string;
|
613
|
+
waterSystem?: string | undefined;
|
614
|
+
isEditable?: boolean | undefined;
|
615
|
+
value?: any;
|
616
|
+
visible?: boolean | undefined;
|
617
|
+
isReadOnly?: boolean | undefined;
|
618
|
+
isFrom?: string | undefined;
|
1000
619
|
}[];
|
1001
620
|
"Design Parameters": {
|
1002
|
-
name:
|
1003
|
-
key:
|
621
|
+
name: string;
|
622
|
+
key: string;
|
623
|
+
waterSystem?: string | undefined;
|
624
|
+
isEditable?: boolean | undefined;
|
625
|
+
value?: any;
|
626
|
+
visible?: boolean | undefined;
|
627
|
+
isReadOnly?: boolean | undefined;
|
628
|
+
isFrom?: string | undefined;
|
1004
629
|
}[];
|
1005
630
|
"System KPIs": {
|
1006
631
|
name: string;
|
1007
|
-
key:
|
632
|
+
key: string;
|
633
|
+
waterSystem?: string | undefined;
|
634
|
+
isEditable?: boolean | undefined;
|
635
|
+
value?: any;
|
636
|
+
visible?: boolean | undefined;
|
637
|
+
isReadOnly?: boolean | undefined;
|
638
|
+
isFrom?: string | undefined;
|
1008
639
|
}[];
|
1009
640
|
};
|
1010
641
|
export declare const ASSET_CATEGORY_PARAMS__BOILER: any;
|
@@ -1027,10 +658,6 @@ export declare enum ATO_ASSET_LAYERS {
|
|
1027
658
|
ANALYTICS = "Analytics",
|
1028
659
|
PERFORMANCE = "Performance"
|
1029
660
|
}
|
1030
|
-
export declare enum ATO_MAPPER_FROM {
|
1031
|
-
HFW = "HFW",
|
1032
|
-
PLUGIN = "Plugin"
|
1033
|
-
}
|
1034
661
|
export declare const ATO_COMPONENTS_GROUP_DATA: {
|
1035
662
|
WaterStorageTanks: {
|
1036
663
|
nodeDataArray: ({
|
@@ -1744,6 +1371,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1744
1371
|
extendedDataResponsive?: undefined;
|
1745
1372
|
source?: undefined;
|
1746
1373
|
selectable?: undefined;
|
1374
|
+
extendedDataPerformance?: undefined;
|
1747
1375
|
isGroup?: undefined;
|
1748
1376
|
} | {
|
1749
1377
|
key: number;
|
@@ -1768,6 +1396,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1768
1396
|
loc?: undefined;
|
1769
1397
|
source?: undefined;
|
1770
1398
|
selectable?: undefined;
|
1399
|
+
extendedDataPerformance?: undefined;
|
1771
1400
|
isGroup?: undefined;
|
1772
1401
|
} | {
|
1773
1402
|
minSizeValue: go.Size;
|
@@ -1777,8 +1406,11 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1777
1406
|
isEditable: boolean;
|
1778
1407
|
maxSizeValue: go.Size;
|
1779
1408
|
name: string;
|
1780
|
-
key:
|
1781
|
-
waterSystem
|
1409
|
+
key: string;
|
1410
|
+
waterSystem?: string | undefined;
|
1411
|
+
visible?: boolean | undefined;
|
1412
|
+
isReadOnly?: boolean | undefined;
|
1413
|
+
isFrom?: string | undefined;
|
1782
1414
|
}[];
|
1783
1415
|
visible: boolean;
|
1784
1416
|
assetLayers: ATO_ASSET_LAYERS;
|
@@ -1804,6 +1436,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1804
1436
|
data?: undefined;
|
1805
1437
|
name?: undefined;
|
1806
1438
|
source?: undefined;
|
1439
|
+
extendedDataPerformance?: undefined;
|
1807
1440
|
isGroup?: undefined;
|
1808
1441
|
} | {
|
1809
1442
|
minSizeValue: go.Size;
|
@@ -1832,6 +1465,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1832
1465
|
data?: undefined;
|
1833
1466
|
name?: undefined;
|
1834
1467
|
source?: undefined;
|
1468
|
+
extendedDataPerformance?: undefined;
|
1835
1469
|
isGroup?: undefined;
|
1836
1470
|
} | {
|
1837
1471
|
key: number;
|
@@ -1845,6 +1479,9 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1845
1479
|
loc?: undefined;
|
1846
1480
|
visible?: undefined;
|
1847
1481
|
};
|
1482
|
+
extendedDataPerformance: {
|
1483
|
+
margin: go.Margin;
|
1484
|
+
};
|
1848
1485
|
extendedDataResponsive: {
|
1849
1486
|
margin: go.Margin;
|
1850
1487
|
loc?: undefined;
|
@@ -1874,6 +1511,48 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1874
1511
|
data?: undefined;
|
1875
1512
|
source?: undefined;
|
1876
1513
|
selectable?: undefined;
|
1514
|
+
extendedDataPerformance?: undefined;
|
1515
|
+
isGroup?: undefined;
|
1516
|
+
} | {
|
1517
|
+
minSizeValue: go.Size;
|
1518
|
+
selectable: boolean;
|
1519
|
+
dataTable: {
|
1520
|
+
maxSizeValue: go.Size;
|
1521
|
+
maxSizeNameParam: go.Size;
|
1522
|
+
waterSystem: WATER_SYSTEMS_NAME;
|
1523
|
+
name: string;
|
1524
|
+
key: string;
|
1525
|
+
isEditable?: boolean | undefined;
|
1526
|
+
value?: any;
|
1527
|
+
visible?: boolean | undefined;
|
1528
|
+
isReadOnly?: boolean | undefined;
|
1529
|
+
isFrom?: string | undefined;
|
1530
|
+
}[];
|
1531
|
+
assetLayers: ATO_ASSET_LAYERS;
|
1532
|
+
isFrom: ATO_MAPPER_FROM;
|
1533
|
+
extendedData: {
|
1534
|
+
visible: boolean;
|
1535
|
+
loc?: undefined;
|
1536
|
+
margin?: undefined;
|
1537
|
+
};
|
1538
|
+
extendedDataResponsive: {
|
1539
|
+
visible: boolean;
|
1540
|
+
loc?: undefined;
|
1541
|
+
margin?: undefined;
|
1542
|
+
};
|
1543
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
1544
|
+
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
1545
|
+
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
1546
|
+
title: WATER_SYSTEMS_NAME;
|
1547
|
+
key: number;
|
1548
|
+
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1549
|
+
group: number;
|
1550
|
+
padding: go.Margin;
|
1551
|
+
loc: string;
|
1552
|
+
data?: undefined;
|
1553
|
+
name?: undefined;
|
1554
|
+
source?: undefined;
|
1555
|
+
extendedDataPerformance?: undefined;
|
1877
1556
|
isGroup?: undefined;
|
1878
1557
|
} | {
|
1879
1558
|
key: number;
|
@@ -1888,6 +1567,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1888
1567
|
extendedDataResponsive?: undefined;
|
1889
1568
|
source?: undefined;
|
1890
1569
|
selectable?: undefined;
|
1570
|
+
extendedDataPerformance?: undefined;
|
1891
1571
|
})[];
|
1892
1572
|
linkDataArray: never[];
|
1893
1573
|
};
|
@@ -2108,17 +1788,11 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
2108
1788
|
loc?: undefined;
|
2109
1789
|
margin?: undefined;
|
2110
1790
|
};
|
2111
|
-
extendedDataisFromPlugin: {
|
2112
|
-
visible: boolean;
|
2113
|
-
};
|
2114
1791
|
extendedDataResponsive: {
|
2115
1792
|
visible: boolean;
|
2116
1793
|
loc?: undefined;
|
2117
1794
|
margin?: undefined;
|
2118
1795
|
};
|
2119
|
-
extendedDataisFromPluginResponsive: {
|
2120
|
-
visible: boolean;
|
2121
|
-
};
|
2122
1796
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
2123
1797
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
2124
1798
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
@@ -2338,8 +2012,11 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
2338
2012
|
isEditable: boolean;
|
2339
2013
|
maxSizeValue: go.Size;
|
2340
2014
|
name: string;
|
2341
|
-
key:
|
2342
|
-
waterSystem
|
2015
|
+
key: string;
|
2016
|
+
waterSystem?: string | undefined;
|
2017
|
+
visible?: boolean | undefined;
|
2018
|
+
isReadOnly?: boolean | undefined;
|
2019
|
+
isFrom?: string | undefined;
|
2343
2020
|
}[];
|
2344
2021
|
visible: boolean;
|
2345
2022
|
assetLayers: ATO_ASSET_LAYERS;
|