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,846 @@
1
+ {
2
+ "id": 106,
3
+ "properties": [
4
+ {
5
+ "id": 6829,
6
+ "name": "fs.Tank1_672.control_volume.material_holdup[0.0,Liq,water]",
7
+ "value": [
8
+ 515.1807762702891,
9
+ 595.1807762702891,
10
+ 675.1807762702891,
11
+ 755.1807762702891,
12
+ 835.1807762702891,
13
+ 915.1807762702891,
14
+ 995.1807762702891,
15
+ 1075.180776270289,
16
+ 1155.180776270289,
17
+ 1235.180776270289,
18
+ 1315.180776270289,
19
+ 1395.180776270289,
20
+ 1475.180776270289,
21
+ 1555.180776270289,
22
+ 1635.180776270289
23
+ ],
24
+ "unit": "mol",
25
+ "unknown_units": false
26
+ },
27
+ {
28
+ "id": 6830,
29
+ "name": "fs.Tank1_672.control_volume.material_holdup[0.0,Vap,water]",
30
+ "value": [
31
+ 0.0,
32
+ -1.0351406553679207e-36,
33
+ -1.0351406553679207e-36,
34
+ -1.0429259557448534e-36,
35
+ -1.0429259557448534e-36,
36
+ -1.045952132646083e-36,
37
+ -1.045952132646083e-36,
38
+ -6.560011053336421e-37,
39
+ -6.560011053336421e-37,
40
+ -2.9235794328655815e-37,
41
+ -2.9235794328655815e-37,
42
+ -2.6409234075227456e-37,
43
+ -2.6409234075227456e-37,
44
+ -2.639990703264891e-37,
45
+ -2.87780102793285e-33
46
+ ],
47
+ "unit": "mol",
48
+ "unknown_units": false
49
+ },
50
+ {
51
+ "id": 6803,
52
+ "name": "fs.Tank1_672.control_volume.volume[0.0]",
53
+ "value": [
54
+ 0.009294147403272024,
55
+ 0.010734692793335455,
56
+ 0.012175481506020299,
57
+ 0.013616433377405071,
58
+ 0.015057499428592783,
59
+ 0.016498648140235796,
60
+ 0.017939858356011473,
61
+ 0.019381115370933455,
62
+ 0.020822408658935337,
63
+ 0.02226373049347223,
64
+ 0.023705075078350256,
65
+ 0.02514643798216145,
66
+ 0.026587815759827646,
67
+ 0.02802920569304689,
68
+ 0.029470605608363714
69
+ ],
70
+ "unit": "m**3",
71
+ "unknown_units": false
72
+ },
73
+ {
74
+ "id": 6801,
75
+ "name": "fs.Tank1_672.control_volume.deltaP[0.0]",
76
+ "value": [
77
+ 11601.412512336115,
78
+ 13399.572213029734,
79
+ 15198.035641002694,
80
+ 16996.70273170024,
81
+ 18795.512347251006,
82
+ 20594.425143652992,
83
+ 22393.414712542362,
84
+ 24192.46269843094,
85
+ 25991.555962164242,
86
+ 27790.684859088426,
87
+ 29589.842154108832,
88
+ 31389.022315723803,
89
+ 33188.2210436171,
90
+ 34987.434944670356,
91
+ 36786.66130586942
92
+ ],
93
+ "unit": "kg/m/s**2",
94
+ "unknown_units": false
95
+ },
96
+ {
97
+ "id": 6800,
98
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].flow_mol",
99
+ "value": [
100
+ 20.0,
101
+ 20.0,
102
+ 20.0,
103
+ 20.0,
104
+ 20.0,
105
+ 20.0,
106
+ 20.0,
107
+ 20.0,
108
+ 20.0,
109
+ 20.0,
110
+ 20.0,
111
+ 20.0,
112
+ 20.0,
113
+ 20.0,
114
+ 20.0
115
+ ],
116
+ "unit": "mol/s",
117
+ "unknown_units": false
118
+ },
119
+ {
120
+ "id": 6797,
121
+ "name": "fs.Tank1_672.heat_duty_inverted[0.0]",
122
+ "value": [
123
+ 5000.0,
124
+ 5000.0,
125
+ 5000.0,
126
+ 5000.0,
127
+ 5000.0,
128
+ 5000.0,
129
+ 5000.0,
130
+ 5000.0,
131
+ 5000.0,
132
+ 5000.0,
133
+ 5000.0,
134
+ 5000.0,
135
+ 5000.0,
136
+ 5000.0,
137
+ 5000.0
138
+ ],
139
+ "unit": "kg*m**2/s**3",
140
+ "unknown_units": false
141
+ },
142
+ {
143
+ "id": 6806,
144
+ "name": "fs.Tank1_672.initial_level",
145
+ "value": [
146
+ 1.0
147
+ ],
148
+ "unit": "m",
149
+ "unknown_units": false
150
+ },
151
+ {
152
+ "id": 6805,
153
+ "name": "fs.Tank1_672.initial_pressure",
154
+ "value": [
155
+ 100000.0
156
+ ],
157
+ "unit": "Pa",
158
+ "unknown_units": false
159
+ },
160
+ {
161
+ "id": 6804,
162
+ "name": "fs.Tank1_672.initial_temperature",
163
+ "value": [
164
+ 293.15
165
+ ],
166
+ "unit": "K",
167
+ "unknown_units": false
168
+ },
169
+ {
170
+ "id": 6798,
171
+ "name": "fs.Tank1_672.tank_diameter",
172
+ "value": [
173
+ 0.1
174
+ ],
175
+ "unit": "m",
176
+ "unknown_units": false
177
+ },
178
+ {
179
+ "id": 6799,
180
+ "name": "fs.Tank1_672.tank_level[0.0]",
181
+ "value": [
182
+ 1.1833676008443565,
183
+ 1.3667835365058267,
184
+ 1.5502304529656679,
185
+ 1.7336981434363907,
186
+ 1.9171803717311446,
187
+ 2.100673124681946,
188
+ 2.284173708582135,
189
+ 2.467680251134698,
190
+ 2.6511914121192337,
191
+ 2.834706207761494,
192
+ 3.0182239000671527,
193
+ 3.2017439248118245,
194
+ 3.3852658433545333,
195
+ 3.568789309590325,
196
+ 3.752314046786255
197
+ ],
198
+ "unit": "m",
199
+ "unknown_units": false
200
+ },
201
+ {
202
+ "id": 6813,
203
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].enth_mass",
204
+ "value": [
205
+ 42114.419967500166,
206
+ 42114.419967500166,
207
+ 42114.419967500166,
208
+ 42114.419967500166,
209
+ 42114.419967500166,
210
+ 42114.419967500166,
211
+ 42114.419967500166,
212
+ 42114.419967500166,
213
+ 42114.419967500166,
214
+ 42114.419967500166,
215
+ 42114.419967500166,
216
+ 42114.419967500166,
217
+ 42114.419967500166,
218
+ 42114.419967500166,
219
+ 42114.419967500166
220
+ ],
221
+ "unit": "J/kg",
222
+ "unknown_units": false
223
+ },
224
+ {
225
+ "id": 6812,
226
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].enth_mol",
227
+ "value": [
228
+ 758.7025623790668,
229
+ 758.7025623790668,
230
+ 758.7025623790668,
231
+ 758.7025623790668,
232
+ 758.7025623790668,
233
+ 758.7025623790668,
234
+ 758.7025623790668,
235
+ 758.7025623790668,
236
+ 758.7025623790668,
237
+ 758.7025623790668,
238
+ 758.7025623790668,
239
+ 758.7025623790668,
240
+ 758.7025623790668,
241
+ 758.7025623790668,
242
+ 758.7025623790668
243
+ ],
244
+ "unit": "J/mol",
245
+ "unknown_units": false
246
+ },
247
+ {
248
+ "id": 6815,
249
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].entr_mass",
250
+ "value": [
251
+ 151.0658735853562,
252
+ 151.0658735853562,
253
+ 151.0658735853562,
254
+ 151.0658735853562,
255
+ 151.0658735853562,
256
+ 151.0658735853562,
257
+ 151.0658735853562,
258
+ 151.0658735853562,
259
+ 151.0658735853562,
260
+ 151.0658735853562,
261
+ 151.0658735853562,
262
+ 151.0658735853562,
263
+ 151.0658735853562,
264
+ 151.0658735853562,
265
+ 151.0658735853562
266
+ ],
267
+ "unit": "J/K/kg",
268
+ "unknown_units": false
269
+ },
270
+ {
271
+ "id": 6814,
272
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].entr_mol",
273
+ "value": [
274
+ 2.721492198294313,
275
+ 2.721492198294313,
276
+ 2.721492198294313,
277
+ 2.721492198294313,
278
+ 2.721492198294313,
279
+ 2.721492198294313,
280
+ 2.721492198294313,
281
+ 2.721492198294313,
282
+ 2.721492198294313,
283
+ 2.721492198294313,
284
+ 2.721492198294313,
285
+ 2.721492198294313,
286
+ 2.721492198294313,
287
+ 2.721492198294313,
288
+ 2.721492198294313
289
+ ],
290
+ "unit": "J/K/mol",
291
+ "unknown_units": false
292
+ },
293
+ {
294
+ "id": 6807,
295
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].flow_mass",
296
+ "value": [
297
+ 1.8015268,
298
+ 1.8015268,
299
+ 1.8015268,
300
+ 1.8015268,
301
+ 1.8015268,
302
+ 1.8015268,
303
+ 1.8015268,
304
+ 1.8015268,
305
+ 1.8015268,
306
+ 1.8015268,
307
+ 1.8015268,
308
+ 1.8015268,
309
+ 1.8015268,
310
+ 1.8015268,
311
+ 1.8015268
312
+ ],
313
+ "unit": "kg/s",
314
+ "unknown_units": false
315
+ },
316
+ {
317
+ "id": 6808,
318
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].flow_mol",
319
+ "value": [
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
+ 100.0,
333
+ 100.0,
334
+ 100.0
335
+ ],
336
+ "unit": "mol/s",
337
+ "unknown_units": false
338
+ },
339
+ {
340
+ "id": 6817,
341
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].flow_vol",
342
+ "value": [
343
+ 0.0018020639887804254,
344
+ 0.0018020639887804254,
345
+ 0.0018020639887804254,
346
+ 0.0018020639887804254,
347
+ 0.0018020639887804254,
348
+ 0.0018020639887804254,
349
+ 0.0018020639887804254,
350
+ 0.0018020639887804254,
351
+ 0.0018020639887804254,
352
+ 0.0018020639887804254,
353
+ 0.0018020639887804254,
354
+ 0.0018020639887804254,
355
+ 0.0018020639887804254,
356
+ 0.0018020639887804254,
357
+ 0.0018020639887804254
358
+ ],
359
+ "unit": "m**3/s",
360
+ "unknown_units": false
361
+ },
362
+ {
363
+ "id": 6831,
364
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].mole_frac_comp[water]",
365
+ "value": [
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
+ 1.0,
379
+ 1.0,
380
+ 1.0
381
+ ],
382
+ "unit": "dimensionless",
383
+ "unknown_units": false
384
+ },
385
+ {
386
+ "id": 6832,
387
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].mole_frac_phase_comp[Liq,water]",
388
+ "value": [
389
+ 1.0,
390
+ 1.0,
391
+ 1.0,
392
+ 1.0,
393
+ 1.0,
394
+ 1.0,
395
+ 1.0,
396
+ 1.0,
397
+ 1.0,
398
+ 1.0,
399
+ 1.0,
400
+ 1.0,
401
+ 1.0,
402
+ 1.0,
403
+ 1.0
404
+ ],
405
+ "unit": "dimensionless",
406
+ "unknown_units": false
407
+ },
408
+ {
409
+ "id": 6833,
410
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].mole_frac_phase_comp[Vap,water]",
411
+ "value": [
412
+ 0.0,
413
+ 0.0,
414
+ 0.0,
415
+ 0.0,
416
+ 0.0,
417
+ 0.0,
418
+ 0.0,
419
+ 0.0,
420
+ 0.0,
421
+ 0.0,
422
+ 0.0,
423
+ 0.0,
424
+ 0.0,
425
+ 0.0,
426
+ 0.0
427
+ ],
428
+ "unit": "dimensionless",
429
+ "unknown_units": false
430
+ },
431
+ {
432
+ "id": 6810,
433
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].pressure",
434
+ "value": [
435
+ 100000.0,
436
+ 100000.0,
437
+ 100000.0,
438
+ 100000.0,
439
+ 100000.0,
440
+ 100000.0,
441
+ 100000.0,
442
+ 100000.0,
443
+ 100000.0,
444
+ 100000.0,
445
+ 100000.0,
446
+ 100000.0,
447
+ 100000.0,
448
+ 100000.0,
449
+ 100000.0
450
+ ],
451
+ "unit": "Pa",
452
+ "unknown_units": false
453
+ },
454
+ {
455
+ "id": 6809,
456
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].temperature",
457
+ "value": [
458
+ 283.15000000000566,
459
+ 283.15000000000566,
460
+ 283.15000000000566,
461
+ 283.15000000000566,
462
+ 283.15000000000566,
463
+ 283.15000000000566,
464
+ 283.15000000000566,
465
+ 283.15000000000566,
466
+ 283.15000000000566,
467
+ 283.15000000000566,
468
+ 283.15000000000566,
469
+ 283.15000000000566,
470
+ 283.15000000000566,
471
+ 283.15000000000566,
472
+ 283.15000000000566
473
+ ],
474
+ "unit": "K",
475
+ "unknown_units": false
476
+ },
477
+ {
478
+ "id": 6816,
479
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].total_energy_flow",
480
+ "value": [
481
+ 75870.25623790668,
482
+ 75870.25623790668,
483
+ 75870.25623790668,
484
+ 75870.25623790668,
485
+ 75870.25623790668,
486
+ 75870.25623790668,
487
+ 75870.25623790668,
488
+ 75870.25623790668,
489
+ 75870.25623790668,
490
+ 75870.25623790668,
491
+ 75870.25623790668,
492
+ 75870.25623790668,
493
+ 75870.25623790668,
494
+ 75870.25623790668,
495
+ 75870.25623790668
496
+ ],
497
+ "unit": "J/s",
498
+ "unknown_units": false
499
+ },
500
+ {
501
+ "id": 6811,
502
+ "name": "fs.Tank1_672.control_volume.properties_in[0.0].vapor_frac",
503
+ "value": [
504
+ 0.0,
505
+ 0.0,
506
+ 0.0,
507
+ 0.0,
508
+ 0.0,
509
+ 0.0,
510
+ 0.0,
511
+ 0.0,
512
+ 0.0,
513
+ 0.0,
514
+ 0.0,
515
+ 0.0,
516
+ 0.0,
517
+ 0.0,
518
+ 0.0
519
+ ],
520
+ "unit": "dimensionless",
521
+ "unknown_units": false
522
+ },
523
+ {
524
+ "id": 6824,
525
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].enth_mass",
526
+ "value": [
527
+ 75762.32443271649,
528
+ 69857.82032777744,
529
+ 65482.55884136478,
530
+ 62123.62280183555,
531
+ 59472.01918702485,
532
+ 57331.09445819997,
533
+ 55570.05749517571,
534
+ 54098.72144890901,
535
+ 52852.99209612189,
536
+ 51786.13689715673,
537
+ 50863.323629396145,
538
+ 50058.08858648448,
539
+ 49349.98583982793,
540
+ 48722.982681278714,
541
+ 48164.33977327529
542
+ ],
543
+ "unit": "J/kg",
544
+ "unknown_units": false
545
+ },
546
+ {
547
+ "id": 6823,
548
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].enth_mol",
549
+ "value": [
550
+ 1364.8785789583355,
551
+ 1258.5073551007586,
552
+ 1179.685846852956,
553
+ 1119.1737139059783,
554
+ 1071.404364155395,
555
+ 1032.8350313977874,
556
+ 1001.1094785509991,
557
+ 974.6029653594442,
558
+ 952.1608172135176,
559
+ 932.941134886967,
560
+ 916.3164065543043,
561
+ 901.8098814532592,
562
+ 889.0532207007053,
563
+ 877.7575907625946,
564
+ 867.6934890586136
565
+ ],
566
+ "unit": "J/mol",
567
+ "unknown_units": false
568
+ },
569
+ {
570
+ "id": 6826,
571
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].entr_mass",
572
+ "value": [
573
+ 268.2070962200143,
574
+ 247.87358065896024,
575
+ 232.7407914251501,
576
+ 221.08451312203636,
577
+ 211.85855596072034,
578
+ 204.39338663910485,
579
+ 198.24174361720782,
580
+ 193.0941133943612,
581
+ 188.72987880358912,
582
+ 184.98778320771274,
583
+ 181.74737965071208,
584
+ 178.91699264924162,
585
+ 176.42568185120317,
586
+ 174.2177425124905,
587
+ 172.248858657084
588
+ ],
589
+ "unit": "J/K/kg",
590
+ "unknown_units": false
591
+ },
592
+ {
593
+ "id": 6825,
594
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].entr_mol",
595
+ "value": [
596
+ 4.831822717905346,
597
+ 4.465508985690786,
598
+ 4.192887732056182,
599
+ 3.9828967545430025,
600
+ 3.8166886637253747,
601
+ 3.6822016377310933,
602
+ 3.5713781400512885,
603
+ 3.478642202021807,
604
+ 3.400019346254178,
605
+ 3.332604491212845,
606
+ 3.274227752705325,
607
+ 3.2232375723301185,
608
+ 3.1783559406321618,
609
+ 3.1385793217175104,
610
+ 3.1031093514014887
611
+ ],
612
+ "unit": "J/K/mol",
613
+ "unknown_units": false
614
+ },
615
+ {
616
+ "id": 6818,
617
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].flow_mass",
618
+ "value": [
619
+ 0.36030536,
620
+ 0.36030536,
621
+ 0.36030536,
622
+ 0.36030536,
623
+ 0.36030536,
624
+ 0.36030536,
625
+ 0.36030536,
626
+ 0.36030536,
627
+ 0.36030536,
628
+ 0.36030536,
629
+ 0.36030536,
630
+ 0.36030536,
631
+ 0.36030536,
632
+ 0.36030536,
633
+ 0.36030536
634
+ ],
635
+ "unit": "kg/s",
636
+ "unknown_units": false
637
+ },
638
+ {
639
+ "id": 6819,
640
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].flow_mol",
641
+ "value": [
642
+ 20.0,
643
+ 20.0,
644
+ 20.0,
645
+ 20.0,
646
+ 20.0,
647
+ 20.0,
648
+ 20.0,
649
+ 20.0,
650
+ 20.0,
651
+ 20.0,
652
+ 20.0,
653
+ 20.0,
654
+ 20.0,
655
+ 20.0,
656
+ 20.0
657
+ ],
658
+ "unit": "mol/s",
659
+ "unknown_units": false
660
+ },
661
+ {
662
+ "id": 6828,
663
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].flow_vol",
664
+ "value": [
665
+ 0.00036081111063801876,
666
+ 0.00036072041374066486,
667
+ 0.000360658417239833,
668
+ 0.0003606138769753709,
669
+ 0.0003605806037786439,
670
+ 0.0003605549541255477,
671
+ 0.00036053466432995154,
672
+ 0.0003605182644385601,
673
+ 0.0003605047640450569,
674
+ 0.00036049347465880936,
675
+ 0.00036048390466252744,
676
+ 0.000360475694761005,
677
+ 0.00036046857697060965,
678
+ 0.00036046234779557655,
679
+ 0.0003604568502276994
680
+ ],
681
+ "unit": "m**3/s",
682
+ "unknown_units": false
683
+ },
684
+ {
685
+ "id": 6834,
686
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].mole_frac_comp[water]",
687
+ "value": [
688
+ 1.0,
689
+ 1.0,
690
+ 1.0,
691
+ 1.0,
692
+ 1.0,
693
+ 1.0,
694
+ 1.0,
695
+ 1.0,
696
+ 1.0,
697
+ 1.0,
698
+ 1.0,
699
+ 1.0,
700
+ 1.0,
701
+ 1.0,
702
+ 1.0
703
+ ],
704
+ "unit": "dimensionless",
705
+ "unknown_units": false
706
+ },
707
+ {
708
+ "id": 6835,
709
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].mole_frac_phase_comp[Liq,water]",
710
+ "value": [
711
+ 1.0,
712
+ 1.0,
713
+ 1.0,
714
+ 1.0,
715
+ 1.0,
716
+ 1.0,
717
+ 1.0,
718
+ 1.0,
719
+ 1.0,
720
+ 1.0,
721
+ 1.0,
722
+ 1.0,
723
+ 1.0,
724
+ 1.0,
725
+ 1.0
726
+ ],
727
+ "unit": "dimensionless",
728
+ "unknown_units": false
729
+ },
730
+ {
731
+ "id": 6836,
732
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].mole_frac_phase_comp[Vap,water]",
733
+ "value": [
734
+ 0.0,
735
+ 0.0,
736
+ 0.0,
737
+ 0.0,
738
+ 0.0,
739
+ 0.0,
740
+ 0.0,
741
+ 0.0,
742
+ 0.0,
743
+ 0.0,
744
+ 0.0,
745
+ 0.0,
746
+ 0.0,
747
+ 0.0,
748
+ 0.0
749
+ ],
750
+ "unit": "dimensionless",
751
+ "unknown_units": false
752
+ },
753
+ {
754
+ "id": 6821,
755
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].pressure",
756
+ "value": [
757
+ 111601.41251233612,
758
+ 113399.57221302974,
759
+ 115198.03564100269,
760
+ 116996.70273170024,
761
+ 118795.512347251,
762
+ 120594.42514365299,
763
+ 122393.41471254236,
764
+ 124192.46269843094,
765
+ 125991.55596216423,
766
+ 127790.68485908842,
767
+ 129589.84215410883,
768
+ 131389.0223157238,
769
+ 133188.22104361712,
770
+ 134987.43494467036,
771
+ 136786.66130586943
772
+ ],
773
+ "unit": "Pa",
774
+ "unknown_units": false
775
+ },
776
+ {
777
+ "id": 6820,
778
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].temperature",
779
+ "value": [
780
+ 291.1788107479649,
781
+ 289.76780769577823,
782
+ 288.72242717290897,
783
+ 287.9199614402454,
784
+ 287.286511830928,
785
+ 286.7750600879773,
786
+ 286.35434299903716,
787
+ 286.0028078600704,
788
+ 285.7051405593946,
789
+ 285.4501771859145,
790
+ 285.2295979831774,
791
+ 285.03708291223285,
792
+ 284.86774970281976,
793
+ 284.71777034411105,
794
+ 284.58410346723565
795
+ ],
796
+ "unit": "K",
797
+ "unknown_units": false
798
+ },
799
+ {
800
+ "id": 6827,
801
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].total_energy_flow",
802
+ "value": [
803
+ 27297.57157916671,
804
+ 25170.147102015173,
805
+ 23593.716937059122,
806
+ 22383.474278119567,
807
+ 21428.0872831079,
808
+ 20656.700627955746,
809
+ 20022.189571019982,
810
+ 19492.059307188883,
811
+ 19043.216344270353,
812
+ 18658.82269773934,
813
+ 18326.328131086088,
814
+ 18036.197629065184,
815
+ 17781.064414014105,
816
+ 17555.151815251895,
817
+ 17353.869781172274
818
+ ],
819
+ "unit": "J/s",
820
+ "unknown_units": false
821
+ },
822
+ {
823
+ "id": 6822,
824
+ "name": "fs.Tank1_672.control_volume.properties_out[0.0].vapor_frac",
825
+ "value": [
826
+ 0.0,
827
+ 0.0,
828
+ 0.0,
829
+ 0.0,
830
+ 0.0,
831
+ 0.0,
832
+ 0.0,
833
+ 0.0,
834
+ 0.0,
835
+ 0.0,
836
+ 0.0,
837
+ 0.0,
838
+ 0.0,
839
+ 0.0,
840
+ 0.0
841
+ ],
842
+ "unit": "dimensionless",
843
+ "unknown_units": false
844
+ }
845
+ ]
846
+ }