ahuora-builder 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. ahuora_builder/__init__.py +0 -0
  2. ahuora_builder/arc_manager.py +33 -0
  3. ahuora_builder/build_state.py +57 -0
  4. ahuora_builder/custom/PIDController.py +494 -0
  5. ahuora_builder/custom/PySMOModel.py +178 -0
  6. ahuora_builder/custom/SimpleEffectivenessHX_DH.py +727 -0
  7. ahuora_builder/custom/__init__.py +0 -0
  8. ahuora_builder/custom/add_initial_dynamics.py +35 -0
  9. ahuora_builder/custom/custom_compressor.py +107 -0
  10. ahuora_builder/custom/custom_cooler.py +33 -0
  11. ahuora_builder/custom/custom_heat_exchanger.py +183 -0
  12. ahuora_builder/custom/custom_heat_exchanger_1d.py +258 -0
  13. ahuora_builder/custom/custom_heater.py +41 -0
  14. ahuora_builder/custom/custom_pressure_changer.py +34 -0
  15. ahuora_builder/custom/custom_pump.py +107 -0
  16. ahuora_builder/custom/custom_separator.py +371 -0
  17. ahuora_builder/custom/custom_tank.py +133 -0
  18. ahuora_builder/custom/custom_turbine.py +132 -0
  19. ahuora_builder/custom/custom_valve.py +300 -0
  20. ahuora_builder/custom/custom_variable.py +29 -0
  21. ahuora_builder/custom/direct_steam_injection.py +371 -0
  22. ahuora_builder/custom/energy/__init__.py +0 -0
  23. ahuora_builder/custom/energy/acBus.py +280 -0
  24. ahuora_builder/custom/energy/ac_property_package.py +279 -0
  25. ahuora_builder/custom/energy/battery.py +170 -0
  26. ahuora_builder/custom/energy/bus.py +182 -0
  27. ahuora_builder/custom/energy/energy_mixer.py +195 -0
  28. ahuora_builder/custom/energy/energy_splitter.py +228 -0
  29. ahuora_builder/custom/energy/grid.py +173 -0
  30. ahuora_builder/custom/energy/hydro.py +169 -0
  31. ahuora_builder/custom/energy/link.py +137 -0
  32. ahuora_builder/custom/energy/load.py +155 -0
  33. ahuora_builder/custom/energy/mainDistributionBoard.py +257 -0
  34. ahuora_builder/custom/energy/power_property_package.py +253 -0
  35. ahuora_builder/custom/energy/solar.py +176 -0
  36. ahuora_builder/custom/energy/storage.py +230 -0
  37. ahuora_builder/custom/energy/storage_wrapper +0 -0
  38. ahuora_builder/custom/energy/tests/__init__.py +0 -0
  39. ahuora_builder/custom/energy/tests/test_bus.py +44 -0
  40. ahuora_builder/custom/energy/tests/test_energy_mixer.py +46 -0
  41. ahuora_builder/custom/energy/tests/test_mdb.py +49 -0
  42. ahuora_builder/custom/energy/transformer.py +187 -0
  43. ahuora_builder/custom/energy/transformer_property_package.py +267 -0
  44. ahuora_builder/custom/energy/transmissionLine.py +228 -0
  45. ahuora_builder/custom/energy/wind.py +206 -0
  46. ahuora_builder/custom/hda_ideal_VLE.py +1341 -0
  47. ahuora_builder/custom/hda_reaction.py +182 -0
  48. ahuora_builder/custom/heat_exchanger_1d_wrapper.py +31 -0
  49. ahuora_builder/custom/integration_block.py +106 -0
  50. ahuora_builder/custom/inverted.py +81 -0
  51. ahuora_builder/custom/performance_curves.py +1 -0
  52. ahuora_builder/custom/reactions/__init__.py +0 -0
  53. ahuora_builder/custom/reactions/hda_stoich.py +10 -0
  54. ahuora_builder/custom/simple_separator.py +680 -0
  55. ahuora_builder/custom/tests/__init__.py +0 -0
  56. ahuora_builder/custom/tests/test_SimpleEffectivenessHX_DH.py +91 -0
  57. ahuora_builder/custom/tests/test_custom_tank.py +70 -0
  58. ahuora_builder/custom/tests/test_direct_steam_injection.py +41 -0
  59. ahuora_builder/custom/tests/test_simple_separator.py +46 -0
  60. ahuora_builder/custom/tests/test_waterpipe.py +46 -0
  61. ahuora_builder/custom/thermal_utility_systems/desuperheater.py +624 -0
  62. ahuora_builder/custom/thermal_utility_systems/header.py +889 -0
  63. ahuora_builder/custom/thermal_utility_systems/simple_heat_pump.py +567 -0
  64. ahuora_builder/custom/thermal_utility_systems/steam_header.py +353 -0
  65. ahuora_builder/custom/thermal_utility_systems/steam_user.py +944 -0
  66. ahuora_builder/custom/thermal_utility_systems/temp.py +349 -0
  67. ahuora_builder/custom/thermal_utility_systems/tests/test_desuperheater.py +142 -0
  68. ahuora_builder/custom/thermal_utility_systems/tests/test_header.py +998 -0
  69. ahuora_builder/custom/thermal_utility_systems/tests/test_ntu_hx.py +129 -0
  70. ahuora_builder/custom/thermal_utility_systems/tests/test_simple_heat_pump.py +120 -0
  71. ahuora_builder/custom/thermal_utility_systems/tests/test_steam_header.py +703 -0
  72. ahuora_builder/custom/thermal_utility_systems/tests/test_steam_user.py +277 -0
  73. ahuora_builder/custom/thermal_utility_systems/tests/test_waterpipe.py +36 -0
  74. ahuora_builder/custom/thermal_utility_systems/tests/test_willans_turbine.py +253 -0
  75. ahuora_builder/custom/thermal_utility_systems/willans_turbine.py +804 -0
  76. ahuora_builder/custom/translator.py +129 -0
  77. ahuora_builder/custom/updated_pressure_changer.py +1404 -0
  78. ahuora_builder/custom/valve_wrapper.py +38 -0
  79. ahuora_builder/custom/water_tank_with_units.py +456 -0
  80. ahuora_builder/diagnostics/__init__.py +0 -0
  81. ahuora_builder/diagnostics/infeasibilities.py +40 -0
  82. ahuora_builder/diagnostics/tests/__init__.py +0 -0
  83. ahuora_builder/diagnostics/tests/test_infeasibilities.py +28 -0
  84. ahuora_builder/flowsheet_manager.py +542 -0
  85. ahuora_builder/flowsheet_manager_type.py +20 -0
  86. ahuora_builder/generate_python_file.py +440 -0
  87. ahuora_builder/methods/BlockContext.py +84 -0
  88. ahuora_builder/methods/__init__.py +0 -0
  89. ahuora_builder/methods/adapter.py +355 -0
  90. ahuora_builder/methods/adapter_library.py +549 -0
  91. ahuora_builder/methods/adapter_methods.py +80 -0
  92. ahuora_builder/methods/expression_parsing.py +105 -0
  93. ahuora_builder/methods/load_unit_model.py +147 -0
  94. ahuora_builder/methods/slice_manipulation.py +7 -0
  95. ahuora_builder/methods/tests/__init__.py +0 -0
  96. ahuora_builder/methods/tests/test_expression_parsing.py +15 -0
  97. ahuora_builder/methods/units_handler.py +129 -0
  98. ahuora_builder/ml_wizard.py +101 -0
  99. ahuora_builder/port_manager.py +20 -0
  100. ahuora_builder/properties_manager.py +44 -0
  101. ahuora_builder/property_package_manager.py +78 -0
  102. ahuora_builder/solver.py +38 -0
  103. ahuora_builder/tear_manager.py +98 -0
  104. ahuora_builder/tests/__init__.py +0 -0
  105. ahuora_builder/tests/test_generate_python_file/__init__.py +0 -0
  106. ahuora_builder/tests/test_generate_python_file/configurations/compressor_generated.py +63 -0
  107. ahuora_builder/tests/test_generate_python_file/configurations/heat_exchanger_generated.py +70 -0
  108. ahuora_builder/tests/test_generate_python_file/configurations/pump_generated.py +84 -0
  109. ahuora_builder/tests/test_generate_python_file/configurations/recycle_generated.py +73 -0
  110. ahuora_builder/tests/test_generate_python_file/test_generate_python_file.py +108 -0
  111. ahuora_builder/tests/test_solver/__init__.py +0 -0
  112. ahuora_builder/tests/test_solver/configurations/BT_PR.json +59 -0
  113. ahuora_builder/tests/test_solver/configurations/BT_PR_solved.json +59 -0
  114. ahuora_builder/tests/test_solver/configurations/bus.json +99 -0
  115. ahuora_builder/tests/test_solver/configurations/bus_solved.json +50 -0
  116. ahuora_builder/tests/test_solver/configurations/compound_separator.json +377 -0
  117. ahuora_builder/tests/test_solver/configurations/compound_separator_solved.json +374 -0
  118. ahuora_builder/tests/test_solver/configurations/compressor.json +38 -0
  119. ahuora_builder/tests/test_solver/configurations/compressor_solved.json +68 -0
  120. ahuora_builder/tests/test_solver/configurations/constraints.json +44 -0
  121. ahuora_builder/tests/test_solver/configurations/constraints_solved.json +59 -0
  122. ahuora_builder/tests/test_solver/configurations/control.json +39 -0
  123. ahuora_builder/tests/test_solver/configurations/control_solved.json +68 -0
  124. ahuora_builder/tests/test_solver/configurations/dynamic_tank.json +733 -0
  125. ahuora_builder/tests/test_solver/configurations/dynamic_tank_solved.json +846 -0
  126. ahuora_builder/tests/test_solver/configurations/elimination.json +39 -0
  127. ahuora_builder/tests/test_solver/configurations/elimination_solved.json +68 -0
  128. ahuora_builder/tests/test_solver/configurations/expressions.json +68 -0
  129. ahuora_builder/tests/test_solver/configurations/expressions_solved.json +104 -0
  130. ahuora_builder/tests/test_solver/configurations/header.json +1192 -0
  131. ahuora_builder/tests/test_solver/configurations/header_solved.json +761 -0
  132. ahuora_builder/tests/test_solver/configurations/heat_exchanger.json +63 -0
  133. ahuora_builder/tests/test_solver/configurations/heat_exchanger_solved.json +104 -0
  134. ahuora_builder/tests/test_solver/configurations/heat_pump.json +137 -0
  135. ahuora_builder/tests/test_solver/configurations/heat_pump_solved.json +104 -0
  136. ahuora_builder/tests/test_solver/configurations/machine_learning.json +2156 -0
  137. ahuora_builder/tests/test_solver/configurations/machine_learning_solved.json +266 -0
  138. ahuora_builder/tests/test_solver/configurations/mass_flow_tear.json +77 -0
  139. ahuora_builder/tests/test_solver/configurations/mass_flow_tear_solved.json +68 -0
  140. ahuora_builder/tests/test_solver/configurations/milk_heater.json +521 -0
  141. ahuora_builder/tests/test_solver/configurations/milk_heater_solved.json +311 -0
  142. ahuora_builder/tests/test_solver/configurations/mixer.json +44 -0
  143. ahuora_builder/tests/test_solver/configurations/mixer_solved.json +86 -0
  144. ahuora_builder/tests/test_solver/configurations/optimization.json +62 -0
  145. ahuora_builder/tests/test_solver/configurations/optimization_solved.json +59 -0
  146. ahuora_builder/tests/test_solver/configurations/propane_heat_pump.json +167 -0
  147. ahuora_builder/tests/test_solver/configurations/propane_heat_pump_solved.json +158 -0
  148. ahuora_builder/tests/test_solver/configurations/propane_recycle.json +141 -0
  149. ahuora_builder/tests/test_solver/configurations/propane_recycle_solved.json +104 -0
  150. ahuora_builder/tests/test_solver/configurations/pump.json +64 -0
  151. ahuora_builder/tests/test_solver/configurations/pump_solved.json +59 -0
  152. ahuora_builder/tests/test_solver/configurations/pump_unit_conversions.json +63 -0
  153. ahuora_builder/tests/test_solver/configurations/recycle.json +49 -0
  154. ahuora_builder/tests/test_solver/configurations/recycle_solved.json +50 -0
  155. ahuora_builder/tests/test_solver/configurations/sb_vapor_frac.json +29 -0
  156. ahuora_builder/tests/test_solver/configurations/sb_vapor_frac_solved.json +29 -0
  157. ahuora_builder/tests/test_solver/configurations/solar.json +67 -0
  158. ahuora_builder/tests/test_solver/configurations/solar_solved.json +50 -0
  159. ahuora_builder/tests/test_solver/configurations/vapor_frac_target.json +67 -0
  160. ahuora_builder/tests/test_solver/configurations/vapor_frac_target_solved.json +68 -0
  161. ahuora_builder/tests/test_solver/test_solve_models.py +250 -0
  162. ahuora_builder/timing.py +65 -0
  163. ahuora_builder/types/__init__.py +1 -0
  164. ahuora_builder/unit_model_manager.py +48 -0
  165. ahuora_builder-0.1.0.dist-info/METADATA +14 -0
  166. ahuora_builder-0.1.0.dist-info/RECORD +167 -0
  167. ahuora_builder-0.1.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,521 @@
1
+ {
2
+ "id": 6,
3
+ "name": "",
4
+ "description": "",
5
+ "dynamic": false,
6
+ "is_rating_mode": false,
7
+ "time_set": [
8
+ 0
9
+ ],
10
+ "property_packages": [
11
+ {
12
+ "id": 0,
13
+ "type": "milk",
14
+ "compounds": [
15
+ "milk_solid",
16
+ "water"
17
+ ],
18
+ "phases": [
19
+ "Liq",
20
+ "Vap"
21
+ ]
22
+ }
23
+ ],
24
+ "unit_models": [
25
+ {
26
+ "id": 81,
27
+ "type": "heater",
28
+ "name": "Heater 1",
29
+ "args": {
30
+ "property_package": 0,
31
+ "has_pressure_change": true,
32
+ "dynamic": false,
33
+ "has_holdup": false
34
+ },
35
+ "properties": {
36
+ "heat_duty": {
37
+ "data": [
38
+ {
39
+ "id": 907,
40
+ "value": 1,
41
+ "controlled": null,
42
+ "guess": false,
43
+ "constraint": null
44
+ }
45
+ ],
46
+ "unit": "kW",
47
+ "transformers": []
48
+ },
49
+ "deltaP": {
50
+ "data": [
51
+ {
52
+ "id": 908,
53
+ "value": 0,
54
+ "controlled": null,
55
+ "guess": false,
56
+ "constraint": null
57
+ }
58
+ ],
59
+ "unit": "kPa",
60
+ "transformers": [
61
+ "inverse"
62
+ ]
63
+ }
64
+ },
65
+ "ports": {
66
+ "inlet": {
67
+ "id": 52,
68
+ "properties": {
69
+ "flow_mol": {
70
+ "data": [
71
+ {
72
+ "id": 918,
73
+ "value": 1,
74
+ "controlled": null,
75
+ "guess": false,
76
+ "constraint": null
77
+ }
78
+ ],
79
+ "unit": "mol/s",
80
+ "transformers": []
81
+ },
82
+ "pressure": {
83
+ "data": [
84
+ {
85
+ "id": 920,
86
+ "value": 100,
87
+ "controlled": null,
88
+ "guess": false,
89
+ "constraint": null
90
+ }
91
+ ],
92
+ "unit": "kPa",
93
+ "transformers": []
94
+ },
95
+ "enth_mass": {
96
+ "data": [
97
+ {
98
+ "id": 923,
99
+ "value": null,
100
+ "controlled": null,
101
+ "guess": false,
102
+ "constraint": null
103
+ }
104
+ ],
105
+ "unit": "",
106
+ "transformers": []
107
+ },
108
+ "enth_mol": {
109
+ "data": [
110
+ {
111
+ "id": 922,
112
+ "value": null,
113
+ "controlled": null,
114
+ "guess": false,
115
+ "constraint": null
116
+ }
117
+ ],
118
+ "unit": "",
119
+ "transformers": []
120
+ },
121
+ "mole_frac_comp": {
122
+ "data": [
123
+ {
124
+ "discrete_indexes": [
125
+ "milk_solid"
126
+ ],
127
+ "id": 943,
128
+ "value": 0.5,
129
+ "controlled": null,
130
+ "guess": false,
131
+ "constraint": null
132
+ },
133
+ {
134
+ "discrete_indexes": [
135
+ "water"
136
+ ],
137
+ "id": 953,
138
+ "value": 0.5,
139
+ "controlled": null,
140
+ "guess": false,
141
+ "constraint": null
142
+ }
143
+ ],
144
+ "unit": "dimensionless",
145
+ "transformers": []
146
+ },
147
+ "mole_frac_phase_comp": {
148
+ "data": [
149
+ {
150
+ "discrete_indexes": [
151
+ "Liq",
152
+ "milk_solid"
153
+ ],
154
+ "id": 944,
155
+ "value": null,
156
+ "controlled": null,
157
+ "guess": false,
158
+ "constraint": null
159
+ },
160
+ {
161
+ "discrete_indexes": [
162
+ "Liq",
163
+ "water"
164
+ ],
165
+ "id": 954,
166
+ "value": null,
167
+ "controlled": null,
168
+ "guess": false,
169
+ "constraint": null
170
+ },
171
+ {
172
+ "discrete_indexes": [
173
+ "Vap",
174
+ "milk_solid"
175
+ ],
176
+ "id": 945,
177
+ "value": null,
178
+ "controlled": null,
179
+ "guess": false,
180
+ "constraint": null
181
+ },
182
+ {
183
+ "discrete_indexes": [
184
+ "Vap",
185
+ "water"
186
+ ],
187
+ "id": 955,
188
+ "value": null,
189
+ "controlled": null,
190
+ "guess": false,
191
+ "constraint": null
192
+ }
193
+ ],
194
+ "unit": "",
195
+ "transformers": []
196
+ },
197
+ "temperature": {
198
+ "data": [
199
+ {
200
+ "id": 919,
201
+ "value": 10,
202
+ "controlled": null,
203
+ "guess": false,
204
+ "constraint": null
205
+ }
206
+ ],
207
+ "unit": "degC",
208
+ "transformers": []
209
+ },
210
+ "vapor_frac": {
211
+ "data": [
212
+ {
213
+ "id": 921,
214
+ "value": null,
215
+ "controlled": null,
216
+ "guess": false,
217
+ "constraint": null
218
+ }
219
+ ],
220
+ "unit": "",
221
+ "transformers": []
222
+ },
223
+ "flow_mass": {
224
+ "data": [
225
+ {
226
+ "id": 917,
227
+ "value": null,
228
+ "controlled": null,
229
+ "guess": false,
230
+ "constraint": null
231
+ }
232
+ ],
233
+ "unit": "",
234
+ "transformers": []
235
+ },
236
+ "flow_vol": {
237
+ "data": [
238
+ {
239
+ "id": 927,
240
+ "value": null,
241
+ "controlled": null,
242
+ "guess": false,
243
+ "constraint": null
244
+ }
245
+ ],
246
+ "unit": "",
247
+ "transformers": []
248
+ },
249
+ "entr_mass": {
250
+ "data": [
251
+ {
252
+ "id": 925,
253
+ "value": null,
254
+ "controlled": null,
255
+ "guess": false,
256
+ "constraint": null
257
+ }
258
+ ],
259
+ "unit": "",
260
+ "transformers": []
261
+ },
262
+ "entr_mol": {
263
+ "data": [
264
+ {
265
+ "id": 924,
266
+ "value": null,
267
+ "controlled": null,
268
+ "guess": false,
269
+ "constraint": null
270
+ }
271
+ ],
272
+ "unit": "",
273
+ "transformers": []
274
+ },
275
+ "total_energy_flow": {
276
+ "data": [
277
+ {
278
+ "id": 926,
279
+ "value": null,
280
+ "controlled": null,
281
+ "guess": false,
282
+ "constraint": null
283
+ }
284
+ ],
285
+ "unit": "",
286
+ "transformers": []
287
+ }
288
+ }
289
+ },
290
+ "outlet": {
291
+ "id": 53,
292
+ "properties": {
293
+ "flow_mol": {
294
+ "data": [
295
+ {
296
+ "id": 929,
297
+ "value": null,
298
+ "controlled": null,
299
+ "guess": false,
300
+ "constraint": null
301
+ }
302
+ ],
303
+ "unit": "",
304
+ "transformers": []
305
+ },
306
+ "pressure": {
307
+ "data": [
308
+ {
309
+ "id": 931,
310
+ "value": null,
311
+ "controlled": null,
312
+ "guess": false,
313
+ "constraint": null
314
+ }
315
+ ],
316
+ "unit": "",
317
+ "transformers": []
318
+ },
319
+ "enth_mass": {
320
+ "data": [
321
+ {
322
+ "id": 934,
323
+ "value": null,
324
+ "controlled": null,
325
+ "guess": false,
326
+ "constraint": null
327
+ }
328
+ ],
329
+ "unit": "",
330
+ "transformers": []
331
+ },
332
+ "enth_mol": {
333
+ "data": [
334
+ {
335
+ "id": 933,
336
+ "value": null,
337
+ "controlled": null,
338
+ "guess": false,
339
+ "constraint": null
340
+ }
341
+ ],
342
+ "unit": "",
343
+ "transformers": []
344
+ },
345
+ "mole_frac_comp": {
346
+ "data": [
347
+ {
348
+ "discrete_indexes": [
349
+ "milk_solid"
350
+ ],
351
+ "id": 946,
352
+ "value": null,
353
+ "controlled": null,
354
+ "guess": false,
355
+ "constraint": null
356
+ },
357
+ {
358
+ "discrete_indexes": [
359
+ "water"
360
+ ],
361
+ "id": 956,
362
+ "value": null,
363
+ "controlled": null,
364
+ "guess": false,
365
+ "constraint": null
366
+ }
367
+ ],
368
+ "unit": "",
369
+ "transformers": []
370
+ },
371
+ "mole_frac_phase_comp": {
372
+ "data": [
373
+ {
374
+ "discrete_indexes": [
375
+ "Liq",
376
+ "milk_solid"
377
+ ],
378
+ "id": 947,
379
+ "value": null,
380
+ "controlled": null,
381
+ "guess": false,
382
+ "constraint": null
383
+ },
384
+ {
385
+ "discrete_indexes": [
386
+ "Liq",
387
+ "water"
388
+ ],
389
+ "id": 957,
390
+ "value": null,
391
+ "controlled": null,
392
+ "guess": false,
393
+ "constraint": null
394
+ },
395
+ {
396
+ "discrete_indexes": [
397
+ "Vap",
398
+ "milk_solid"
399
+ ],
400
+ "id": 948,
401
+ "value": null,
402
+ "controlled": null,
403
+ "guess": false,
404
+ "constraint": null
405
+ },
406
+ {
407
+ "discrete_indexes": [
408
+ "Vap",
409
+ "water"
410
+ ],
411
+ "id": 958,
412
+ "value": null,
413
+ "controlled": null,
414
+ "guess": false,
415
+ "constraint": null
416
+ }
417
+ ],
418
+ "unit": "",
419
+ "transformers": []
420
+ },
421
+ "temperature": {
422
+ "data": [
423
+ {
424
+ "id": 930,
425
+ "value": null,
426
+ "controlled": null,
427
+ "guess": false,
428
+ "constraint": null
429
+ }
430
+ ],
431
+ "unit": "",
432
+ "transformers": []
433
+ },
434
+ "vapor_frac": {
435
+ "data": [
436
+ {
437
+ "id": 932,
438
+ "value": null,
439
+ "controlled": null,
440
+ "guess": false,
441
+ "constraint": null
442
+ }
443
+ ],
444
+ "unit": "",
445
+ "transformers": []
446
+ },
447
+ "flow_mass": {
448
+ "data": [
449
+ {
450
+ "id": 928,
451
+ "value": null,
452
+ "controlled": null,
453
+ "guess": false,
454
+ "constraint": null
455
+ }
456
+ ],
457
+ "unit": "",
458
+ "transformers": []
459
+ },
460
+ "flow_vol": {
461
+ "data": [
462
+ {
463
+ "id": 938,
464
+ "value": null,
465
+ "controlled": null,
466
+ "guess": false,
467
+ "constraint": null
468
+ }
469
+ ],
470
+ "unit": "",
471
+ "transformers": []
472
+ },
473
+ "entr_mass": {
474
+ "data": [
475
+ {
476
+ "id": 936,
477
+ "value": null,
478
+ "controlled": null,
479
+ "guess": false,
480
+ "constraint": null
481
+ }
482
+ ],
483
+ "unit": "",
484
+ "transformers": []
485
+ },
486
+ "entr_mol": {
487
+ "data": [
488
+ {
489
+ "id": 935,
490
+ "value": null,
491
+ "controlled": null,
492
+ "guess": false,
493
+ "constraint": null
494
+ }
495
+ ],
496
+ "unit": "",
497
+ "transformers": []
498
+ },
499
+ "total_energy_flow": {
500
+ "data": [
501
+ {
502
+ "id": 937,
503
+ "value": null,
504
+ "controlled": null,
505
+ "guess": false,
506
+ "constraint": null
507
+ }
508
+ ],
509
+ "unit": "",
510
+ "transformers": []
511
+ }
512
+ }
513
+ }
514
+ }
515
+ }
516
+ ],
517
+ "arcs": [],
518
+ "machineLearningBlock": null,
519
+ "expressions": [],
520
+ "optimizations": []
521
+ }