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,733 @@
1
+ {
2
+ "id": 106,
3
+ "name": "",
4
+ "description": "",
5
+ "dynamic": true,
6
+ "is_rating_mode": false,
7
+ "time_set": [
8
+ 0.0,
9
+ 1.0,
10
+ 2.0,
11
+ 3.0,
12
+ 4.0,
13
+ 5.0,
14
+ 6.0,
15
+ 7.0,
16
+ 8.0,
17
+ 9.0,
18
+ 10.0,
19
+ 11.0,
20
+ 12.0,
21
+ 13.0,
22
+ 14.0
23
+ ],
24
+ "property_packages": [
25
+ {
26
+ "id": 0,
27
+ "type": "helmholtz",
28
+ "compounds": [
29
+ "water"
30
+ ],
31
+ "phases": [
32
+ "Liq",
33
+ "Vap"
34
+ ]
35
+ }
36
+ ],
37
+ "unit_models": [
38
+ {
39
+ "id": 672,
40
+ "type": "Tank",
41
+ "name": "Tank1",
42
+ "args": {
43
+ "dynamic": true,
44
+ "has_holdup": true,
45
+ "property_package": 0
46
+ },
47
+ "properties": {
48
+ "control_volume.material_holdup": {
49
+ "data": [
50
+ {
51
+ "id": 6829,
52
+ "discrete_indexes": [
53
+ "Liq",
54
+ "water"
55
+ ],
56
+ "value": null,
57
+ "controlled": null,
58
+ "guess": false,
59
+ "constraint": null
60
+ },
61
+ {
62
+ "id": 6830,
63
+ "discrete_indexes": [
64
+ "Vap",
65
+ "water"
66
+ ],
67
+ "value": null,
68
+ "controlled": null,
69
+ "guess": false,
70
+ "constraint": null
71
+ }
72
+ ],
73
+ "unit": "",
74
+ "transformers": []
75
+ },
76
+ "control_volume.volume": {
77
+ "data": [
78
+ {
79
+ "id": 6803,
80
+ "discrete_indexes": [],
81
+ "value": null,
82
+ "controlled": null,
83
+ "guess": false,
84
+ "constraint": null
85
+ }
86
+ ],
87
+ "unit": "",
88
+ "transformers": []
89
+ },
90
+ "deltaP": {
91
+ "data": [
92
+ {
93
+ "id": 6801,
94
+ "discrete_indexes": [],
95
+ "value": null,
96
+ "controlled": null,
97
+ "guess": false,
98
+ "constraint": null
99
+ }
100
+ ],
101
+ "unit": "",
102
+ "transformers": []
103
+ },
104
+ "flow_rate_out": {
105
+ "data": [
106
+ {
107
+ "id": 6800,
108
+ "discrete_indexes": [],
109
+ "value": null,
110
+ "controlled": null,
111
+ "guess": false,
112
+ "constraint": null
113
+ }
114
+ ],
115
+ "unit": "",
116
+ "transformers": []
117
+ },
118
+ "heat_duty_inverted": {
119
+ "data": [
120
+ {
121
+ "id": 6797,
122
+ "discrete_indexes": [],
123
+ "value": [
124
+ 5.0,
125
+ 5.0,
126
+ 5.0,
127
+ 5.0,
128
+ 5.0,
129
+ 5.0,
130
+ 5.0,
131
+ 5.0,
132
+ 5.0,
133
+ 5.0,
134
+ 5.0,
135
+ 5.0,
136
+ 5.0,
137
+ 5.0,
138
+ 5.0
139
+ ],
140
+ "controlled": null,
141
+ "guess": false,
142
+ "constraint": null
143
+ }
144
+ ],
145
+ "unit": "kW",
146
+ "transformers": [
147
+ "inverse"
148
+ ]
149
+ },
150
+ "initial_level": {
151
+ "data": [
152
+ {
153
+ "id": 6806,
154
+ "discrete_indexes": [],
155
+ "value": 1.0,
156
+ "controlled": null,
157
+ "guess": false,
158
+ "constraint": null
159
+ }
160
+ ],
161
+ "unit": "m",
162
+ "transformers": []
163
+ },
164
+ "initial_pressure": {
165
+ "data": [
166
+ {
167
+ "id": 6805,
168
+ "discrete_indexes": [],
169
+ "value": 100.0,
170
+ "controlled": null,
171
+ "guess": false,
172
+ "constraint": null
173
+ }
174
+ ],
175
+ "unit": "kPa",
176
+ "transformers": []
177
+ },
178
+ "initial_temperature": {
179
+ "data": [
180
+ {
181
+ "id": 6804,
182
+ "discrete_indexes": [],
183
+ "value": 20.0,
184
+ "controlled": null,
185
+ "guess": false,
186
+ "constraint": null
187
+ }
188
+ ],
189
+ "unit": "degC",
190
+ "transformers": []
191
+ },
192
+ "tank_diameter": {
193
+ "data": [
194
+ {
195
+ "id": 6798,
196
+ "discrete_indexes": [],
197
+ "value": 0.1,
198
+ "controlled": null,
199
+ "guess": false,
200
+ "constraint": null
201
+ }
202
+ ],
203
+ "unit": "m",
204
+ "transformers": []
205
+ },
206
+ "tank_level": {
207
+ "data": [
208
+ {
209
+ "id": 6799,
210
+ "discrete_indexes": [],
211
+ "value": [
212
+ 1.0,
213
+ 1.0,
214
+ 1.0,
215
+ 1.0,
216
+ 1.0,
217
+ 1.0,
218
+ 1.0,
219
+ 1.0,
220
+ 1.0,
221
+ 1.0,
222
+ 1.0,
223
+ 1.0,
224
+ 1.0,
225
+ 1.0,
226
+ 1.0
227
+ ],
228
+ "controlled": null,
229
+ "guess": true,
230
+ "constraint": null
231
+ }
232
+ ],
233
+ "unit": "m",
234
+ "transformers": []
235
+ }
236
+ },
237
+ "ports": {
238
+ "inlet": {
239
+ "id": 424,
240
+ "properties": {
241
+ "enth_mass": {
242
+ "data": [
243
+ {
244
+ "id": 6813,
245
+ "discrete_indexes": [],
246
+ "value": null,
247
+ "controlled": null,
248
+ "guess": false,
249
+ "constraint": null
250
+ }
251
+ ],
252
+ "unit": "",
253
+ "transformers": []
254
+ },
255
+ "enth_mol": {
256
+ "data": [
257
+ {
258
+ "id": 6812,
259
+ "discrete_indexes": [],
260
+ "value": null,
261
+ "controlled": null,
262
+ "guess": false,
263
+ "constraint": null
264
+ }
265
+ ],
266
+ "unit": "",
267
+ "transformers": []
268
+ },
269
+ "entr_mass": {
270
+ "data": [
271
+ {
272
+ "id": 6815,
273
+ "discrete_indexes": [],
274
+ "value": null,
275
+ "controlled": null,
276
+ "guess": false,
277
+ "constraint": null
278
+ }
279
+ ],
280
+ "unit": "",
281
+ "transformers": []
282
+ },
283
+ "entr_mol": {
284
+ "data": [
285
+ {
286
+ "id": 6814,
287
+ "discrete_indexes": [],
288
+ "value": null,
289
+ "controlled": null,
290
+ "guess": false,
291
+ "constraint": null
292
+ }
293
+ ],
294
+ "unit": "",
295
+ "transformers": []
296
+ },
297
+ "flow_mass": {
298
+ "data": [
299
+ {
300
+ "id": 6807,
301
+ "discrete_indexes": [],
302
+ "value": null,
303
+ "controlled": null,
304
+ "guess": false,
305
+ "constraint": null
306
+ }
307
+ ],
308
+ "unit": "",
309
+ "transformers": []
310
+ },
311
+ "flow_mol": {
312
+ "data": [
313
+ {
314
+ "id": 6808,
315
+ "discrete_indexes": [],
316
+ "value": [
317
+ 100.0,
318
+ 100.0,
319
+ 100.0,
320
+ 100.0,
321
+ 100.0,
322
+ 100.0,
323
+ 100.0,
324
+ 100.0,
325
+ 100.0,
326
+ 100.0,
327
+ 100.0,
328
+ 100.0,
329
+ 100.0,
330
+ 100.0,
331
+ 100.0
332
+ ],
333
+ "controlled": null,
334
+ "guess": false,
335
+ "constraint": null
336
+ }
337
+ ],
338
+ "unit": "mol/s",
339
+ "transformers": []
340
+ },
341
+ "flow_vol": {
342
+ "data": [
343
+ {
344
+ "id": 6817,
345
+ "discrete_indexes": [],
346
+ "value": null,
347
+ "controlled": null,
348
+ "guess": false,
349
+ "constraint": null
350
+ }
351
+ ],
352
+ "unit": "",
353
+ "transformers": []
354
+ },
355
+ "mole_frac_comp": {
356
+ "data": [
357
+ {
358
+ "id": 6831,
359
+ "discrete_indexes": [
360
+ "water"
361
+ ],
362
+ "value": [
363
+ 1.0,
364
+ 1.0,
365
+ 1.0,
366
+ 1.0,
367
+ 1.0,
368
+ 1.0,
369
+ 1.0,
370
+ 1.0,
371
+ 1.0,
372
+ 1.0,
373
+ 1.0,
374
+ 1.0,
375
+ 1.0,
376
+ 1.0,
377
+ 1.0
378
+ ],
379
+ "controlled": null,
380
+ "guess": false,
381
+ "constraint": null
382
+ }
383
+ ],
384
+ "unit": "dimensionless",
385
+ "transformers": []
386
+ },
387
+ "mole_frac_phase_comp": {
388
+ "data": [
389
+ {
390
+ "id": 6832,
391
+ "discrete_indexes": [
392
+ "Liq",
393
+ "water"
394
+ ],
395
+ "value": null,
396
+ "controlled": null,
397
+ "guess": false,
398
+ "constraint": null
399
+ },
400
+ {
401
+ "id": 6833,
402
+ "discrete_indexes": [
403
+ "Vap",
404
+ "water"
405
+ ],
406
+ "value": null,
407
+ "controlled": null,
408
+ "guess": false,
409
+ "constraint": null
410
+ }
411
+ ],
412
+ "unit": "",
413
+ "transformers": []
414
+ },
415
+ "pressure": {
416
+ "data": [
417
+ {
418
+ "id": 6810,
419
+ "discrete_indexes": [],
420
+ "value": [
421
+ 100.0,
422
+ 100.0,
423
+ 100.0,
424
+ 100.0,
425
+ 100.0,
426
+ 100.0,
427
+ 100.0,
428
+ 100.0,
429
+ 100.0,
430
+ 100.0,
431
+ 100.0,
432
+ 100.0,
433
+ 100.0,
434
+ 100.0,
435
+ 100.0
436
+ ],
437
+ "controlled": null,
438
+ "guess": false,
439
+ "constraint": null
440
+ }
441
+ ],
442
+ "unit": "kPa",
443
+ "transformers": []
444
+ },
445
+ "temperature": {
446
+ "data": [
447
+ {
448
+ "id": 6809,
449
+ "discrete_indexes": [],
450
+ "value": [
451
+ 10.000000000004377,
452
+ 10.000000000004377,
453
+ 10.000000000004377,
454
+ 10.000000000004377,
455
+ 10.000000000004377,
456
+ 10.000000000004377,
457
+ 10.000000000004377,
458
+ 10.000000000004377,
459
+ 10.000000000004377,
460
+ 10.000000000004377,
461
+ 10.000000000004377,
462
+ 10.000000000004377,
463
+ 10.000000000004377,
464
+ 10.000000000004377,
465
+ 10.000000000004377
466
+ ],
467
+ "controlled": null,
468
+ "guess": false,
469
+ "constraint": null
470
+ }
471
+ ],
472
+ "unit": "degC",
473
+ "transformers": []
474
+ },
475
+ "total_energy_flow": {
476
+ "data": [
477
+ {
478
+ "id": 6816,
479
+ "discrete_indexes": [],
480
+ "value": null,
481
+ "controlled": null,
482
+ "guess": false,
483
+ "constraint": null
484
+ }
485
+ ],
486
+ "unit": "",
487
+ "transformers": []
488
+ },
489
+ "vapor_frac": {
490
+ "data": [
491
+ {
492
+ "id": 6811,
493
+ "discrete_indexes": [],
494
+ "value": null,
495
+ "controlled": null,
496
+ "guess": false,
497
+ "constraint": null
498
+ }
499
+ ],
500
+ "unit": "",
501
+ "transformers": []
502
+ }
503
+ }
504
+ },
505
+ "outlet": {
506
+ "id": 425,
507
+ "properties": {
508
+ "enth_mass": {
509
+ "data": [
510
+ {
511
+ "id": 6824,
512
+ "discrete_indexes": [],
513
+ "value": null,
514
+ "controlled": null,
515
+ "guess": false,
516
+ "constraint": null
517
+ }
518
+ ],
519
+ "unit": "",
520
+ "transformers": []
521
+ },
522
+ "enth_mol": {
523
+ "data": [
524
+ {
525
+ "id": 6823,
526
+ "discrete_indexes": [],
527
+ "value": null,
528
+ "controlled": null,
529
+ "guess": false,
530
+ "constraint": null
531
+ }
532
+ ],
533
+ "unit": "",
534
+ "transformers": []
535
+ },
536
+ "entr_mass": {
537
+ "data": [
538
+ {
539
+ "id": 6826,
540
+ "discrete_indexes": [],
541
+ "value": null,
542
+ "controlled": null,
543
+ "guess": false,
544
+ "constraint": null
545
+ }
546
+ ],
547
+ "unit": "",
548
+ "transformers": []
549
+ },
550
+ "entr_mol": {
551
+ "data": [
552
+ {
553
+ "id": 6825,
554
+ "discrete_indexes": [],
555
+ "value": null,
556
+ "controlled": null,
557
+ "guess": false,
558
+ "constraint": null
559
+ }
560
+ ],
561
+ "unit": "",
562
+ "transformers": []
563
+ },
564
+ "flow_mass": {
565
+ "data": [
566
+ {
567
+ "id": 6818,
568
+ "discrete_indexes": [],
569
+ "value": null,
570
+ "controlled": null,
571
+ "guess": false,
572
+ "constraint": null
573
+ }
574
+ ],
575
+ "unit": "",
576
+ "transformers": []
577
+ },
578
+ "flow_mol": {
579
+ "data": [
580
+ {
581
+ "id": 6819,
582
+ "discrete_indexes": [],
583
+ "value": [
584
+ 20.0,
585
+ 20.0,
586
+ 20.0,
587
+ 20.0,
588
+ 20.0,
589
+ 20.0,
590
+ 20.0,
591
+ 20.0,
592
+ 20.0,
593
+ 20.0,
594
+ 20.0,
595
+ 20.0,
596
+ 20.0,
597
+ 20.0,
598
+ 20.0
599
+ ],
600
+ "controlled": 6799,
601
+ "guess": false,
602
+ "constraint": null
603
+ }
604
+ ],
605
+ "unit": "mol/s",
606
+ "transformers": []
607
+ },
608
+ "flow_vol": {
609
+ "data": [
610
+ {
611
+ "id": 6828,
612
+ "discrete_indexes": [],
613
+ "value": null,
614
+ "controlled": null,
615
+ "guess": false,
616
+ "constraint": null
617
+ }
618
+ ],
619
+ "unit": "",
620
+ "transformers": []
621
+ },
622
+ "mole_frac_comp": {
623
+ "data": [
624
+ {
625
+ "id": 6834,
626
+ "discrete_indexes": [
627
+ "water"
628
+ ],
629
+ "value": null,
630
+ "controlled": null,
631
+ "guess": false,
632
+ "constraint": null
633
+ }
634
+ ],
635
+ "unit": "",
636
+ "transformers": []
637
+ },
638
+ "mole_frac_phase_comp": {
639
+ "data": [
640
+ {
641
+ "id": 6835,
642
+ "discrete_indexes": [
643
+ "Liq",
644
+ "water"
645
+ ],
646
+ "value": null,
647
+ "controlled": null,
648
+ "guess": false,
649
+ "constraint": null
650
+ },
651
+ {
652
+ "id": 6836,
653
+ "discrete_indexes": [
654
+ "Vap",
655
+ "water"
656
+ ],
657
+ "value": null,
658
+ "controlled": null,
659
+ "guess": false,
660
+ "constraint": null
661
+ }
662
+ ],
663
+ "unit": "",
664
+ "transformers": []
665
+ },
666
+ "pressure": {
667
+ "data": [
668
+ {
669
+ "id": 6821,
670
+ "discrete_indexes": [],
671
+ "value": null,
672
+ "controlled": null,
673
+ "guess": false,
674
+ "constraint": null
675
+ }
676
+ ],
677
+ "unit": "",
678
+ "transformers": []
679
+ },
680
+ "temperature": {
681
+ "data": [
682
+ {
683
+ "id": 6820,
684
+ "discrete_indexes": [],
685
+ "value": null,
686
+ "controlled": null,
687
+ "guess": false,
688
+ "constraint": null
689
+ }
690
+ ],
691
+ "unit": "",
692
+ "transformers": []
693
+ },
694
+ "total_energy_flow": {
695
+ "data": [
696
+ {
697
+ "id": 6827,
698
+ "discrete_indexes": [],
699
+ "value": null,
700
+ "controlled": null,
701
+ "guess": false,
702
+ "constraint": null
703
+ }
704
+ ],
705
+ "unit": "",
706
+ "transformers": []
707
+ },
708
+ "vapor_frac": {
709
+ "data": [
710
+ {
711
+ "id": 6822,
712
+ "discrete_indexes": [],
713
+ "value": null,
714
+ "controlled": null,
715
+ "guess": false,
716
+ "constraint": null
717
+ }
718
+ ],
719
+ "unit": "",
720
+ "transformers": []
721
+ }
722
+ }
723
+ }
724
+ }
725
+ }
726
+ ],
727
+ "arcs": [],
728
+ "machineLearningBlock": null,
729
+ "expressions": [],
730
+ "optimizations": [],
731
+ "disable_initialization": false,
732
+ "solver_option": "ipopt"
733
+ }