ato-water-lib 0.0.51 → 0.0.53
Sign up to get free protection for your applications and to get access to all the features.
- package/esm2020/lib/constants/components-group-const.mjs +221 -29
- package/fesm2015/ato-water-lib.mjs +106 -19
- package/fesm2015/ato-water-lib.mjs.map +1 -1
- package/fesm2020/ato-water-lib.mjs +220 -28
- package/fesm2020/ato-water-lib.mjs.map +1 -1
- package/lib/constants/components-group-const.d.ts +47 -10
- package/package.json +1 -1
@@ -21,7 +21,7 @@ export declare enum ENUM_ASSET_PARAMETERS {
|
|
21
21
|
MAKEUP_WATER_CALCIUM = "MakeupWaterCalcium",
|
22
22
|
MAKEUP_WATER_TOTAL_IRON = "MakeupWaterTotalIron",
|
23
23
|
SPECIFIC_CONDUCTIVITY = "Specific Conductivity",
|
24
|
-
PH = "
|
24
|
+
PH = "pH",
|
25
25
|
SILICA = "Silica",
|
26
26
|
EVAPORATION_LOSS_FLOW_RATE = "EvaporationLossFlowRate",
|
27
27
|
EVAPORATION_LOSS_FLOW = "EvaporationLossFlow",
|
@@ -41,7 +41,9 @@ export declare enum ENUM_ASSET_PARAMETERS {
|
|
41
41
|
KPI_ATP = "KpiATP",
|
42
42
|
TOTAL_IRON = "Total Iron",
|
43
43
|
PHOSPHATE = "Phosphate",
|
44
|
-
M_AKALINITY = "M-Akalinity"
|
44
|
+
M_AKALINITY = "M-Akalinity",
|
45
|
+
FLOW = "Flow",
|
46
|
+
FLOW_RATE = "Flow Rate"
|
45
47
|
}
|
46
48
|
export declare enum WATER_SYSTEMS_NAME {
|
47
49
|
EVAPORATION_LOSS = "Evaporation Loss",
|
@@ -54,9 +56,19 @@ export declare enum WATER_SYSTEMS_NAME {
|
|
54
56
|
COOLING_WATER_CHEMISTRY = "Cooling Water Chemistry",
|
55
57
|
SYSTEM_KPIS = "System KPI's",
|
56
58
|
CONDENSATE_RETURN = "Condensate Return",
|
59
|
+
CONDENSATE_RETURN__FLOW = "Condensate Return Flow",
|
60
|
+
CONDENSATE_RETURN__CHEMISTRY = "Condensate Return Chemistry",
|
57
61
|
BOILER_FEED_WATER = "Boiler Feed Water",
|
62
|
+
BOILER_FEED_WATER__FLOW = "Boiler Feed Water Flow",
|
63
|
+
BOILER_FEED_WATER__CHEMISTRY = "Boiler Feed Water Chemistry",
|
58
64
|
STEAM = "Steam",
|
59
|
-
|
65
|
+
STEAM__FLOW = "Steam Flow",
|
66
|
+
STEAM__CHEMISTRY = "Steam Chemistry",
|
67
|
+
BOILER_WATER = "Boiler Water",
|
68
|
+
BOILER_WATER__FLOW = "Boiler Water Flow",
|
69
|
+
BOILER_WATER__CHEMISTRY = "Boiler Water Chemistry",
|
70
|
+
STEAM_LOSS = "Steam Loss",
|
71
|
+
BLOWDOWN = "Blowdown"
|
60
72
|
}
|
61
73
|
export declare const DATA_ASSET_PARAMETER_FIELDS: {
|
62
74
|
"Feed Flow Rate": {
|
@@ -225,7 +237,7 @@ export declare const DATA_ASSET_PARAMETER_FIELDS: {
|
|
225
237
|
name: ENUM_ASSET_PARAMETERS;
|
226
238
|
key: ENUM_ASSET_PARAMETERS;
|
227
239
|
};
|
228
|
-
|
240
|
+
pH: {
|
229
241
|
name: ENUM_ASSET_PARAMETERS;
|
230
242
|
key: ENUM_ASSET_PARAMETERS;
|
231
243
|
};
|
@@ -245,6 +257,14 @@ export declare const DATA_ASSET_PARAMETER_FIELDS: {
|
|
245
257
|
name: ENUM_ASSET_PARAMETERS;
|
246
258
|
key: ENUM_ASSET_PARAMETERS;
|
247
259
|
};
|
260
|
+
Flow: {
|
261
|
+
name: ENUM_ASSET_PARAMETERS;
|
262
|
+
key: ENUM_ASSET_PARAMETERS;
|
263
|
+
};
|
264
|
+
"Flow Rate": {
|
265
|
+
name: ENUM_ASSET_PARAMETERS;
|
266
|
+
key: ENUM_ASSET_PARAMETERS;
|
267
|
+
};
|
248
268
|
};
|
249
269
|
export declare const DATA_WATER_SYSTEMS: {
|
250
270
|
"Evaporation Loss": {
|
@@ -325,6 +345,18 @@ export declare const DATA_WATER_SYSTEMS: {
|
|
325
345
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
326
346
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
327
347
|
};
|
348
|
+
"Steam Loss": {
|
349
|
+
title: WATER_SYSTEMS_NAME;
|
350
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
351
|
+
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
352
|
+
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
353
|
+
};
|
354
|
+
Blowdown: {
|
355
|
+
title: WATER_SYSTEMS_NAME;
|
356
|
+
color: AtoGojsEditorModel.ENUM_COLORS;
|
357
|
+
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
358
|
+
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
359
|
+
};
|
328
360
|
};
|
329
361
|
export declare const ASSET_CATEGORY_PARAMS: {
|
330
362
|
"Evaporation Loss": {
|
@@ -1195,7 +1227,6 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1195
1227
|
};
|
1196
1228
|
Boilers: {
|
1197
1229
|
nodeDataArray: ({
|
1198
|
-
key: number;
|
1199
1230
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1200
1231
|
group: number;
|
1201
1232
|
loc: string;
|
@@ -1209,9 +1240,10 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1209
1240
|
extendedDataResponsive?: undefined;
|
1210
1241
|
source?: undefined;
|
1211
1242
|
selectable?: undefined;
|
1243
|
+
assetLayers?: undefined;
|
1244
|
+
key?: undefined;
|
1212
1245
|
isGroup?: undefined;
|
1213
1246
|
} | {
|
1214
|
-
key: number;
|
1215
1247
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1216
1248
|
group: number;
|
1217
1249
|
data: {
|
@@ -1233,12 +1265,14 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1233
1265
|
loc?: undefined;
|
1234
1266
|
source?: undefined;
|
1235
1267
|
selectable?: undefined;
|
1268
|
+
assetLayers?: undefined;
|
1269
|
+
key?: undefined;
|
1236
1270
|
isGroup?: undefined;
|
1237
1271
|
} | {
|
1238
1272
|
minSizeValue: go.Size;
|
1239
1273
|
selectable: boolean;
|
1240
1274
|
dataTable: any;
|
1241
|
-
|
1275
|
+
assetLayers: ATO_ASSET_LAYERS;
|
1242
1276
|
extendedData: {
|
1243
1277
|
visible: boolean;
|
1244
1278
|
loc?: undefined;
|
@@ -1253,7 +1287,6 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1253
1287
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
1254
1288
|
borderTable: AtoGojsEditorModel.ENUM_COLORS;
|
1255
1289
|
bgColor: AtoGojsEditorModel.ENUM_COLORS;
|
1256
|
-
key: number;
|
1257
1290
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1258
1291
|
group: number;
|
1259
1292
|
loc: string;
|
@@ -1261,9 +1294,9 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1261
1294
|
data?: undefined;
|
1262
1295
|
name?: undefined;
|
1263
1296
|
source?: undefined;
|
1297
|
+
key?: undefined;
|
1264
1298
|
isGroup?: undefined;
|
1265
1299
|
} | {
|
1266
|
-
key: number;
|
1267
1300
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1268
1301
|
source: string;
|
1269
1302
|
group: number;
|
@@ -1282,14 +1315,16 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1282
1315
|
data?: undefined;
|
1283
1316
|
name?: undefined;
|
1284
1317
|
color?: undefined;
|
1318
|
+
assetLayers?: undefined;
|
1319
|
+
key?: undefined;
|
1285
1320
|
isGroup?: undefined;
|
1286
1321
|
} | {
|
1287
|
-
key: number;
|
1288
1322
|
type: AtoGojsEditorModel.ENUM_TEMPLATES;
|
1289
1323
|
group: number;
|
1290
1324
|
loc: string;
|
1291
1325
|
name: WATER_SYSTEMS_NAME;
|
1292
1326
|
color: AtoGojsEditorModel.ENUM_COLORS;
|
1327
|
+
assetLayers: ATO_ASSET_LAYERS;
|
1293
1328
|
extendedData: {
|
1294
1329
|
visible: boolean;
|
1295
1330
|
loc?: undefined;
|
@@ -1303,6 +1338,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1303
1338
|
data?: undefined;
|
1304
1339
|
source?: undefined;
|
1305
1340
|
selectable?: undefined;
|
1341
|
+
key?: undefined;
|
1306
1342
|
isGroup?: undefined;
|
1307
1343
|
} | {
|
1308
1344
|
key: number;
|
@@ -1317,6 +1353,7 @@ export declare const ATO_COMPONENTS_GROUP_DATA: {
|
|
1317
1353
|
extendedDataResponsive?: undefined;
|
1318
1354
|
source?: undefined;
|
1319
1355
|
selectable?: undefined;
|
1356
|
+
assetLayers?: undefined;
|
1320
1357
|
})[];
|
1321
1358
|
linkDataArray: never[];
|
1322
1359
|
};
|