ato-water-lib 0.0.89 → 0.0.91

Sign up to get free protection for your applications and to get access to all the features.
@@ -53,7 +53,23 @@ export declare enum ENUM_ASSET_PARAMETERS {
53
53
  CATIONIC_CONDUCTIVITY_IN_STEAM = "Cationic Conductivity in Steam",
54
54
  SI_IN_STEAM = "Si in Steam",
55
55
  SI_IN_BOILER = "Si in Boiler",
56
- PH_IN_BOILER = "pH in Boiler"
56
+ PH_IN_BOILER = "pH in Boiler",
57
+ FLOW_SYSTEMKPIS_PERMEABILITY_BP_TC = "Permeability BP (TC)",
58
+ FLOW_SYSTEMKPIS_PERMEATE_FLUX = "Permeate Flux",
59
+ FLOW_UF_TMP_BEFORE_BACK_PULSE = "Flow_UF_TMP_Before_Back_Pulse",
60
+ FLOW_UF_TMP_AFTER_BACK_PULSE = "Flow_UF_TMP_After_Back_Pulse",
61
+ FLOW_BACKPULSE_FLOW_RATE = "Flow_Backpulse_FlowRate",
62
+ FLOW_BACKPULSE_TMP = "Flow_Backpulse_TMP",
63
+ FLOW_PERMEATE_FLOW_RATE = "Flow_Permeate_FlowRate",
64
+ FLOW_FEED_FLOW_RATE = "Flow_Feed_FlowRate",
65
+ CHEMISTRY_SYSTEMKPIS_PERMEATE_TURBIDITY = "Chemistry_SystemKPIs_Permeate_Turbidity",
66
+ CHEMISTRY_UF_SYSTEM_RECOVERY = "Chemistry_UF_System_Recovery",
67
+ CHEMISTRY_UF_LEAP_STATUS = "Chemistry_UF_Leap_Status",
68
+ CHEMISTRY_BACKPULSE_FLOW_RATE = "Chemistry_Backpulse_FlowRate",
69
+ CHEMISTRY_BACKPULSE_TMP = "Chemistry_Backpulse_TMP",
70
+ CHEMISTRY_PERMEATE_TURBIDITY = "Chemistry_Permeate_Turbidity",
71
+ CHEMISTRY_PERMEATE_TEMPERATURE = "Chemistry_Permeate_Temperature",
72
+ CHEMISTRY_FEED_TURBIDITY = "Chemistry_Feed_Turbidity"
57
73
  }
58
74
  export declare enum WATER_SYSTEMS_NAME {
59
75
  EVAPORATION_LOSS = "Evaporation Loss",
@@ -80,7 +96,22 @@ export declare enum WATER_SYSTEMS_NAME {
80
96
  BOILER_WATER__FLOW = "Boiler Water Flow",
81
97
  BOILER_WATER__CHEMISTRY = "Boiler Water Chemistry",
82
98
  STEAM_LOSS = "Steam Loss",
83
- BLOWDOWN = "Blowdown"
99
+ BLOWDOWN = "Blowdown",
100
+ IMMERSED_UF_SYSTEM_KPIS = "System KPIs",
101
+ IMMERSED_UF_SYSTEM_KPIS__FLOW = "System KPIs Flow",
102
+ IMMERSED_UF_SYSTEM_KPIS__CHEMISTRY = "System KPIs Chemistry",
103
+ IMMERSED_UF_UF = "UF",
104
+ IMMERSED_UF_UF__FLOW = "UF Flow",
105
+ IMMERSED_UF_UF__CHEMISTRY = "UF Chemistry",
106
+ IMMERSED_UF_BACK_PULSE = "Backpulse",
107
+ IMMERSED_UF_BACK_PULSE__FLOW = "Backpulse Flow",
108
+ IMMERSED_UF_BACK_PULSE__CHEMISTRY = "Backpulse Chemistry",
109
+ IMMERSED_UF_PERMEATE = "Permeate",
110
+ IMMERSED_UF_PERMEATE__FLOW = "Permeate Flow",
111
+ IMMERSED_UF_PERMEATE__CHEMISTRY = "Permeate Chemistry",
112
+ IMMERSED_UF_FEED = "Feed",
113
+ IMMERSED_UF_FEED__FLOW = "Feed Flow",
114
+ IMMERSED_UF_FEED__CHEMISTRY = "Feed Chemistry"
84
115
  }
85
116
  export declare const DATA_ASSET_PARAMETER_FIELDS: {
86
117
  "Feed Flow Rate": {
@@ -317,6 +348,70 @@ export declare const DATA_ASSET_PARAMETER_FIELDS: {
317
348
  name: ENUM_ASSET_PARAMETERS;
318
349
  key: ENUM_ASSET_PARAMETERS;
319
350
  };
351
+ "Permeability BP (TC)": {
352
+ name: ENUM_ASSET_PARAMETERS;
353
+ key: ENUM_ASSET_PARAMETERS;
354
+ };
355
+ "Permeate Flux": {
356
+ name: ENUM_ASSET_PARAMETERS;
357
+ key: ENUM_ASSET_PARAMETERS;
358
+ };
359
+ Flow_UF_TMP_Before_Back_Pulse: {
360
+ name: string;
361
+ key: ENUM_ASSET_PARAMETERS;
362
+ };
363
+ Flow_UF_TMP_After_Back_Pulse: {
364
+ name: string;
365
+ key: ENUM_ASSET_PARAMETERS;
366
+ };
367
+ Flow_Backpulse_FlowRate: {
368
+ name: string;
369
+ key: ENUM_ASSET_PARAMETERS;
370
+ };
371
+ Flow_Backpulse_TMP: {
372
+ name: string;
373
+ key: ENUM_ASSET_PARAMETERS;
374
+ };
375
+ Flow_Permeate_FlowRate: {
376
+ name: string;
377
+ key: ENUM_ASSET_PARAMETERS;
378
+ };
379
+ Flow_Feed_FlowRate: {
380
+ name: string;
381
+ key: ENUM_ASSET_PARAMETERS;
382
+ };
383
+ Chemistry_SystemKPIs_Permeate_Turbidity: {
384
+ name: string;
385
+ key: ENUM_ASSET_PARAMETERS;
386
+ };
387
+ Chemistry_UF_System_Recovery: {
388
+ name: string;
389
+ key: ENUM_ASSET_PARAMETERS;
390
+ };
391
+ Chemistry_UF_Leap_Status: {
392
+ name: string;
393
+ key: ENUM_ASSET_PARAMETERS;
394
+ };
395
+ Chemistry_Backpulse_FlowRate: {
396
+ name: string;
397
+ key: ENUM_ASSET_PARAMETERS;
398
+ };
399
+ Chemistry_Backpulse_TMP: {
400
+ name: string;
401
+ key: ENUM_ASSET_PARAMETERS;
402
+ };
403
+ Chemistry_Permeate_Turbidity: {
404
+ name: string;
405
+ key: ENUM_ASSET_PARAMETERS;
406
+ };
407
+ Chemistry_Permeate_Temperature: {
408
+ name: string;
409
+ key: ENUM_ASSET_PARAMETERS;
410
+ };
411
+ Chemistry_Feed_Turbidity: {
412
+ name: string;
413
+ key: ENUM_ASSET_PARAMETERS;
414
+ };
320
415
  };
321
416
  export declare const DATA_WATER_SYSTEMS: {
322
417
  "Evaporation Loss": {
@@ -409,6 +504,66 @@ export declare const DATA_WATER_SYSTEMS: {
409
504
  borderTable: AtoGojsEditorModel.ENUM_COLORS;
410
505
  bgColor: AtoGojsEditorModel.ENUM_COLORS;
411
506
  };
507
+ "System KPIs Flow": {
508
+ title: WATER_SYSTEMS_NAME;
509
+ color: AtoGojsEditorModel.ENUM_COLORS;
510
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
511
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
512
+ };
513
+ "System KPIs Chemistry": {
514
+ title: WATER_SYSTEMS_NAME;
515
+ color: AtoGojsEditorModel.ENUM_COLORS;
516
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
517
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
518
+ };
519
+ "UF Flow": {
520
+ title: WATER_SYSTEMS_NAME;
521
+ color: AtoGojsEditorModel.ENUM_COLORS;
522
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
523
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
524
+ };
525
+ "UF Chemistry": {
526
+ title: WATER_SYSTEMS_NAME;
527
+ color: AtoGojsEditorModel.ENUM_COLORS;
528
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
529
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
530
+ };
531
+ "Backpulse Flow": {
532
+ title: WATER_SYSTEMS_NAME;
533
+ color: AtoGojsEditorModel.ENUM_COLORS;
534
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
535
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
536
+ };
537
+ "Backpulse Chemistry": {
538
+ title: WATER_SYSTEMS_NAME;
539
+ color: AtoGojsEditorModel.ENUM_COLORS;
540
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
541
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
542
+ };
543
+ "Permeate Flow": {
544
+ title: WATER_SYSTEMS_NAME;
545
+ color: AtoGojsEditorModel.ENUM_COLORS;
546
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
547
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
548
+ };
549
+ "Permeate Chemistry": {
550
+ title: WATER_SYSTEMS_NAME;
551
+ color: AtoGojsEditorModel.ENUM_COLORS;
552
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
553
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
554
+ };
555
+ "Feed Flow": {
556
+ title: WATER_SYSTEMS_NAME;
557
+ color: AtoGojsEditorModel.ENUM_COLORS;
558
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
559
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
560
+ };
561
+ "Feed Chemistry": {
562
+ title: WATER_SYSTEMS_NAME;
563
+ color: AtoGojsEditorModel.ENUM_COLORS;
564
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
565
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
566
+ };
412
567
  };
413
568
  export declare const ASSET_CATEGORY_PARAMS: {
414
569
  "Evaporation Loss": {
@@ -453,6 +608,7 @@ export declare const ASSET_CATEGORY_PARAMS: {
453
608
  }[];
454
609
  };
455
610
  export declare const ASSET_CATEGORY_PARAMS__BOILER: any;
611
+ export declare const ASSET_CATEGORY_PARAMS__IMMERSED_UF: any;
456
612
  export declare enum COMPONENTS_GROUP_TYPE {
457
613
  INFLOW = "Inflow",
458
614
  LOSS = "Loss",
@@ -1274,6 +1430,138 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
1274
1430
  })[];
1275
1431
  linkDataArray: never[];
1276
1432
  };
1433
+ ImmersedUFWaterTreatments: {
1434
+ nodeDataArray: ({
1435
+ key: number;
1436
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1437
+ group: number;
1438
+ loc: string;
1439
+ data: {
1440
+ quantity: number;
1441
+ unit: string;
1442
+ };
1443
+ name: string;
1444
+ color: string;
1445
+ extendedData?: undefined;
1446
+ extendedDataResponsive?: undefined;
1447
+ source?: undefined;
1448
+ selectable?: undefined;
1449
+ assetLayers?: undefined;
1450
+ isGroup?: undefined;
1451
+ } | {
1452
+ key: number;
1453
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1454
+ group: number;
1455
+ data: {
1456
+ quantity: number;
1457
+ unit: string;
1458
+ };
1459
+ name: string;
1460
+ color: string;
1461
+ extendedData: {
1462
+ loc: string;
1463
+ visible?: undefined;
1464
+ margin?: undefined;
1465
+ };
1466
+ extendedDataResponsive: {
1467
+ loc: string;
1468
+ visible?: undefined;
1469
+ margin?: undefined;
1470
+ };
1471
+ loc?: undefined;
1472
+ source?: undefined;
1473
+ selectable?: undefined;
1474
+ assetLayers?: undefined;
1475
+ isGroup?: undefined;
1476
+ } | {
1477
+ minSizeValue: go.Size;
1478
+ selectable: boolean;
1479
+ dataTable: any;
1480
+ assetLayers: ATO_ASSET_LAYERS;
1481
+ extendedData: {
1482
+ visible: boolean;
1483
+ loc?: undefined;
1484
+ margin?: undefined;
1485
+ };
1486
+ extendedDataResponsive: {
1487
+ visible: boolean;
1488
+ loc?: undefined;
1489
+ margin?: undefined;
1490
+ };
1491
+ title: WATER_SYSTEMS_NAME;
1492
+ color: AtoGojsEditorModel.ENUM_COLORS;
1493
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
1494
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
1495
+ key: number;
1496
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1497
+ group: number;
1498
+ loc: string;
1499
+ padding: go.Margin;
1500
+ data?: undefined;
1501
+ name?: undefined;
1502
+ source?: undefined;
1503
+ isGroup?: undefined;
1504
+ } | {
1505
+ key: number;
1506
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1507
+ source: string;
1508
+ group: number;
1509
+ loc: string;
1510
+ selectable: boolean;
1511
+ extendedData: {
1512
+ margin: go.Margin;
1513
+ loc?: undefined;
1514
+ visible?: undefined;
1515
+ };
1516
+ extendedDataResponsive: {
1517
+ margin: go.Margin;
1518
+ loc?: undefined;
1519
+ visible?: undefined;
1520
+ };
1521
+ data?: undefined;
1522
+ name?: undefined;
1523
+ color?: undefined;
1524
+ assetLayers?: undefined;
1525
+ isGroup?: undefined;
1526
+ } | {
1527
+ key: number;
1528
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1529
+ group: number;
1530
+ loc: string;
1531
+ name: WATER_SYSTEMS_NAME;
1532
+ color: AtoGojsEditorModel.ENUM_COLORS;
1533
+ assetLayers: ATO_ASSET_LAYERS;
1534
+ extendedData: {
1535
+ visible: boolean;
1536
+ loc?: undefined;
1537
+ margin?: undefined;
1538
+ };
1539
+ extendedDataResponsive: {
1540
+ visible: boolean;
1541
+ loc?: undefined;
1542
+ margin?: undefined;
1543
+ };
1544
+ data?: undefined;
1545
+ source?: undefined;
1546
+ selectable?: undefined;
1547
+ isGroup?: undefined;
1548
+ } | {
1549
+ key: number;
1550
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1551
+ isGroup: boolean;
1552
+ name: string;
1553
+ group?: undefined;
1554
+ loc?: undefined;
1555
+ data?: undefined;
1556
+ color?: undefined;
1557
+ extendedData?: undefined;
1558
+ extendedDataResponsive?: undefined;
1559
+ source?: undefined;
1560
+ selectable?: undefined;
1561
+ assetLayers?: undefined;
1562
+ })[];
1563
+ linkDataArray: never[];
1564
+ };
1277
1565
  Boilers: {
1278
1566
  nodeDataArray: ({
1279
1567
  type: AtoGojsEditorModel.ENUM_TEMPLATES;
@@ -1537,4 +1825,167 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
1537
1825
  color: AtoGojsEditorModel.ENUM_COLORS;
1538
1826
  }[];
1539
1827
  };
1828
+ PressurizedUFWaterTreatments: {
1829
+ nodeDataArray: ({
1830
+ key: number;
1831
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1832
+ group: number;
1833
+ loc: string;
1834
+ data: {
1835
+ quantity: number;
1836
+ unit: string;
1837
+ };
1838
+ name: string;
1839
+ color: string;
1840
+ extendedData?: undefined;
1841
+ extendedDataResponsive?: undefined;
1842
+ source?: undefined;
1843
+ selectable?: undefined;
1844
+ isGroup?: undefined;
1845
+ } | {
1846
+ key: number;
1847
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1848
+ group: number;
1849
+ data: {
1850
+ quantity: number;
1851
+ unit: string;
1852
+ };
1853
+ name: string;
1854
+ color: string;
1855
+ extendedData: {
1856
+ loc: string;
1857
+ visible?: undefined;
1858
+ margin?: undefined;
1859
+ };
1860
+ extendedDataResponsive: {
1861
+ loc: string;
1862
+ visible?: undefined;
1863
+ margin?: undefined;
1864
+ };
1865
+ loc?: undefined;
1866
+ source?: undefined;
1867
+ selectable?: undefined;
1868
+ isGroup?: undefined;
1869
+ } | {
1870
+ minSizeValue: go.Size;
1871
+ selectable: boolean;
1872
+ dataTable: {
1873
+ value: string;
1874
+ isEditable: boolean;
1875
+ maxSizeValue: number;
1876
+ name: string;
1877
+ key: ENUM_ASSET_PARAMETERS;
1878
+ waterSystem: WATER_SYSTEMS_NAME;
1879
+ }[];
1880
+ visible: boolean;
1881
+ assetLayers: ATO_ASSET_LAYERS;
1882
+ extendedData: {
1883
+ visible: boolean;
1884
+ loc?: undefined;
1885
+ margin?: undefined;
1886
+ };
1887
+ extendedDataResponsive: {
1888
+ visible: boolean;
1889
+ loc?: undefined;
1890
+ margin?: undefined;
1891
+ };
1892
+ title: WATER_SYSTEMS_NAME;
1893
+ color: AtoGojsEditorModel.ENUM_COLORS;
1894
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
1895
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
1896
+ key: number;
1897
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1898
+ group: number;
1899
+ loc: string;
1900
+ padding: go.Margin;
1901
+ data?: undefined;
1902
+ name?: undefined;
1903
+ source?: undefined;
1904
+ isGroup?: undefined;
1905
+ } | {
1906
+ minSizeValue: go.Size;
1907
+ selectable: boolean;
1908
+ dataTable: any[];
1909
+ assetLayers: ATO_ASSET_LAYERS;
1910
+ extendedData: {
1911
+ visible: boolean;
1912
+ loc?: undefined;
1913
+ margin?: undefined;
1914
+ };
1915
+ extendedDataResponsive: {
1916
+ visible: boolean;
1917
+ loc?: undefined;
1918
+ margin?: undefined;
1919
+ };
1920
+ title: WATER_SYSTEMS_NAME;
1921
+ color: AtoGojsEditorModel.ENUM_COLORS;
1922
+ borderTable: AtoGojsEditorModel.ENUM_COLORS;
1923
+ bgColor: AtoGojsEditorModel.ENUM_COLORS;
1924
+ key: number;
1925
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1926
+ group: number;
1927
+ padding: go.Margin;
1928
+ loc: string;
1929
+ data?: undefined;
1930
+ name?: undefined;
1931
+ source?: undefined;
1932
+ isGroup?: undefined;
1933
+ } | {
1934
+ key: number;
1935
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1936
+ source: string;
1937
+ group: number;
1938
+ loc: string;
1939
+ selectable: boolean;
1940
+ extendedData: {
1941
+ margin: go.Margin;
1942
+ loc?: undefined;
1943
+ visible?: undefined;
1944
+ };
1945
+ extendedDataResponsive: {
1946
+ margin: go.Margin;
1947
+ loc?: undefined;
1948
+ visible?: undefined;
1949
+ };
1950
+ data?: undefined;
1951
+ name?: undefined;
1952
+ color?: undefined;
1953
+ isGroup?: undefined;
1954
+ } | {
1955
+ key: number;
1956
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1957
+ group: number;
1958
+ loc: string;
1959
+ name: string;
1960
+ color: AtoGojsEditorModel.ENUM_COLORS;
1961
+ extendedData: {
1962
+ visible: boolean;
1963
+ loc?: undefined;
1964
+ margin?: undefined;
1965
+ };
1966
+ extendedDataResponsive: {
1967
+ visible: boolean;
1968
+ loc?: undefined;
1969
+ margin?: undefined;
1970
+ };
1971
+ data?: undefined;
1972
+ source?: undefined;
1973
+ selectable?: undefined;
1974
+ isGroup?: undefined;
1975
+ } | {
1976
+ key: number;
1977
+ type: AtoGojsEditorModel.ENUM_TEMPLATES;
1978
+ isGroup: boolean;
1979
+ name: string;
1980
+ group?: undefined;
1981
+ loc?: undefined;
1982
+ data?: undefined;
1983
+ color?: undefined;
1984
+ extendedData?: undefined;
1985
+ extendedDataResponsive?: undefined;
1986
+ source?: undefined;
1987
+ selectable?: undefined;
1988
+ })[];
1989
+ linkDataArray: never[];
1990
+ };
1540
1991
  };
@@ -187,6 +187,8 @@ export declare namespace AtoGojsEditorModel {
187
187
  TURBINES = "Turbines",
188
188
  GROUP_BASIC_COMPONENT = "Group Basic Component",
189
189
  TEXT_LABEL = "label",
190
+ PRESSURIZED_UF_WATER_TREATMENTS = "Pressurized UF",
191
+ IMMERSED_UF_WATER_TREATMENTS = "Immersed UF",
190
192
  BOILER_ENERGY = "Boiler Energy",
191
193
  COOLING_TOWER_ENERGY = "Cooling Tower Energy"
192
194
  }
@@ -314,6 +316,8 @@ export declare namespace AtoGojsEditorModel {
314
316
  STEAM_COMPONENT = "SteamComponents",
315
317
  STEAM_CONSUMING_SYSTEM = "SteamConsumings",
316
318
  ENERGY_CONVERTER = "EnergyConverters",
319
+ PRESSURIZED_UF_WATER_TREATMENTS = "PressurizedUFWaterTreatments",
320
+ IMMERSED_UF_WATER_TREATMENTS = "ImmersedUFWaterTreatments",
317
321
  BOILER_ENERGY = "Boiler Energy",
318
322
  COOLING_TOWER_ENERGY = "CoolingTowers Energy"
319
323
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ato-water-lib",
3
- "version": "0.0.89",
3
+ "version": "0.0.91",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0 || ^16.2.0",
6
6
  "@angular/core": "^15.1.0 || ^16.2.0",