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