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,2156 @@
1
+ {
2
+ "id": 24,
3
+ "name": "",
4
+ "description": "",
5
+ "dynamic": false,
6
+ "time_set": [
7
+ 0.0
8
+ ],
9
+ "property_packages": [
10
+ {
11
+ "id": 0,
12
+ "type": "helmholtz",
13
+ "compounds": [
14
+ "water"
15
+ ],
16
+ "phases": [
17
+ "Liq",
18
+ "Vap"
19
+ ]
20
+ }
21
+ ],
22
+ "unit_models": [
23
+ {
24
+ "id": 141,
25
+ "type": "machineLearningBlock",
26
+ "name": "Machine Learning 1",
27
+ "args": {
28
+ "property_package": 0,
29
+ "model": {
30
+ "input_bounds": null,
31
+ "input_labels": [
32
+ "water_temp",
33
+ "Air_Temperature",
34
+ "Heating_Duty"
35
+ ],
36
+ "output_labels": [
37
+ "Work_Mechanical",
38
+ "Efficiency",
39
+ "Pressure_Ratio"
40
+ ],
41
+ "model_encoding": {
42
+ "Efficiency": {
43
+ "map": {
44
+ "R2": "str",
45
+ "rmse": "str",
46
+ "sigma": "str",
47
+ "x_data": "numpy",
48
+ "centres": "numpy",
49
+ "weights": "numpy",
50
+ "x_data_max": "numpy",
51
+ "x_data_min": "numpy",
52
+ "y_data_max": "numpy",
53
+ "y_data_min": "numpy",
54
+ "basis_function": "str",
55
+ "x_data_columns": "list",
56
+ "regularization_parameter": "str"
57
+ },
58
+ "attr": {
59
+ "R2": 0.999995591017882,
60
+ "rmse": 0.0006596834976146186,
61
+ "sigma": 0.5,
62
+ "x_data": [
63
+ [
64
+ 0.16215792285650138,
65
+ 0.3613582714181216,
66
+ 0.5444632151592417
67
+ ],
68
+ [
69
+ 0.9389589519914443,
70
+ 0.0,
71
+ 0.9468105645780902
72
+ ],
73
+ [
74
+ 0.5700143664143984,
75
+ 0.5705165899940691,
76
+ 0.36974324868574476
77
+ ],
78
+ [
79
+ 0.47323303007494005,
80
+ 0.6273913875177971,
81
+ 0.012981727094358889
82
+ ],
83
+ [
84
+ 0.8713617660161885,
85
+ 0.14330135596642318,
86
+ 0.4251915566517748
87
+ ],
88
+ [
89
+ 0.3306441522095737,
90
+ 0.9498064572414376,
91
+ 0.2731002135158212
92
+ ],
93
+ [
94
+ 0.28675639274574055,
95
+ 0.8519249769246321,
96
+ 0.0925203961528594
97
+ ],
98
+ [
99
+ 0.0,
100
+ 0.8388836529467868,
101
+ 1.0
102
+ ],
103
+ [
104
+ 0.23429819638023686,
105
+ 0.902636555594231,
106
+ 0.1998370709763884
107
+ ],
108
+ [
109
+ 0.41249256019048947,
110
+ 1.0,
111
+ 0.5770232550809795
112
+ ],
113
+ [
114
+ 0.14612367365814188,
115
+ 0.1069400952089663,
116
+ 0.7806524514731853
117
+ ],
118
+ [
119
+ 0.6262663513943322,
120
+ 0.18739774815651772,
121
+ 0.0
122
+ ],
123
+ [
124
+ 0.9112689741414192,
125
+ 0.5201312647839689,
126
+ 0.5136037201768785
127
+ ],
128
+ [
129
+ 0.017881735451543906,
130
+ 0.5146130245401399,
131
+ 0.6772721177060556
132
+ ],
133
+ [
134
+ 0.5140189909652338,
135
+ 0.9030671270705801,
136
+ 0.6337192025515718
137
+ ],
138
+ [
139
+ 1.0,
140
+ 0.7115334308951737,
141
+ 0.6863282017205625
142
+ ],
143
+ [
144
+ 0.9883545836193317,
145
+ 0.702112947075707,
146
+ 0.04902591977415252
147
+ ],
148
+ [
149
+ 0.8070259094114463,
150
+ 0.42592957516400076,
151
+ 0.029226304317383836
152
+ ],
153
+ [
154
+ 0.6179969187095739,
155
+ 0.21718060154935503,
156
+ 0.12486606393850391
157
+ ],
158
+ [
159
+ 0.7657614513086385,
160
+ 0.9267983573964786,
161
+ 0.43682321305183763
162
+ ],
163
+ [
164
+ 0.43645960989744914,
165
+ 0.15976226761106038,
166
+ 0.23532045968031362
167
+ ],
168
+ [
169
+ 0.6197884156018183,
170
+ 0.5137062245758843,
171
+ 0.555166481994378
172
+ ],
173
+ [
174
+ 0.009914977173205023,
175
+ 0.5641133198912778,
176
+ 0.8915306387449359
177
+ ],
178
+ [
179
+ 0.7221903633704574,
180
+ 0.8805493794490765,
181
+ 0.09073781399921894
182
+ ],
183
+ [
184
+ 0.6539265157133692,
185
+ 0.12204272542550154,
186
+ 0.11617948848696029
187
+ ],
188
+ [
189
+ 0.03919698331596934,
190
+ 0.21490956558420804,
191
+ 0.2195184176901497
192
+ ],
193
+ [
194
+ 0.8164517538481597,
195
+ 0.9990149060769538,
196
+ 0.7627936714165153
197
+ ],
198
+ [
199
+ 0.012791868286934068,
200
+ 0.05521318102690733,
201
+ 0.07255394357481516
202
+ ],
203
+ [
204
+ 0.22687656314602933,
205
+ 0.9989573841401922,
206
+ 0.6418057309398649
207
+ ],
208
+ [
209
+ 0.2527523002952408,
210
+ 0.2865117982301657,
211
+ 0.08417790334177389
212
+ ],
213
+ [
214
+ 0.896482555702297,
215
+ 0.22113361268838963,
216
+ 0.2562243033368259
217
+ ],
218
+ [
219
+ 0.37238750356136296,
220
+ 0.3859833794854695,
221
+ 0.11718702288481557
222
+ ],
223
+ [
224
+ 0.6232006280890854,
225
+ 0.7006674271464707,
226
+ 0.4746547794050536
227
+ ],
228
+ [
229
+ 0.90438359815264,
230
+ 0.9275645145119442,
231
+ 0.028063034793261093
232
+ ],
233
+ [
234
+ 0.036507428943554666,
235
+ 0.2116269380808081,
236
+ 0.032640254981655625
237
+ ],
238
+ [
239
+ 0.24877342297685567,
240
+ 0.25103661178855863,
241
+ 0.5710519965080707
242
+ ],
243
+ [
244
+ 0.578759958694634,
245
+ 0.16288722440166228,
246
+ 0.5633607318603052
247
+ ],
248
+ [
249
+ 0.5271785151689664,
250
+ 0.8007885922332209,
251
+ 0.09027624637307546
252
+ ],
253
+ [
254
+ 0.6915775697939684,
255
+ 0.6866946246116017,
256
+ 0.0878510374004003
257
+ ]
258
+ ],
259
+ "centres": [
260
+ [
261
+ 0.16215792285650138,
262
+ 0.3613582714181216,
263
+ 0.5444632151592417
264
+ ],
265
+ [
266
+ 0.9389589519914443,
267
+ 0.0,
268
+ 0.9468105645780902
269
+ ],
270
+ [
271
+ 0.5700143664143984,
272
+ 0.5705165899940691,
273
+ 0.36974324868574476
274
+ ],
275
+ [
276
+ 0.47323303007494005,
277
+ 0.6273913875177971,
278
+ 0.012981727094358889
279
+ ],
280
+ [
281
+ 0.8713617660161885,
282
+ 0.14330135596642318,
283
+ 0.4251915566517748
284
+ ],
285
+ [
286
+ 0.3306441522095737,
287
+ 0.9498064572414376,
288
+ 0.2731002135158212
289
+ ],
290
+ [
291
+ 0.28675639274574055,
292
+ 0.8519249769246321,
293
+ 0.0925203961528594
294
+ ],
295
+ [
296
+ 0.0,
297
+ 0.8388836529467868,
298
+ 1.0
299
+ ],
300
+ [
301
+ 0.23429819638023686,
302
+ 0.902636555594231,
303
+ 0.1998370709763884
304
+ ],
305
+ [
306
+ 0.41249256019048947,
307
+ 1.0,
308
+ 0.5770232550809795
309
+ ],
310
+ [
311
+ 0.14612367365814188,
312
+ 0.1069400952089663,
313
+ 0.7806524514731853
314
+ ],
315
+ [
316
+ 0.6262663513943322,
317
+ 0.18739774815651772,
318
+ 0.0
319
+ ],
320
+ [
321
+ 0.9112689741414192,
322
+ 0.5201312647839689,
323
+ 0.5136037201768785
324
+ ],
325
+ [
326
+ 0.017881735451543906,
327
+ 0.5146130245401399,
328
+ 0.6772721177060556
329
+ ],
330
+ [
331
+ 0.5140189909652338,
332
+ 0.9030671270705801,
333
+ 0.6337192025515718
334
+ ],
335
+ [
336
+ 1.0,
337
+ 0.7115334308951737,
338
+ 0.6863282017205625
339
+ ],
340
+ [
341
+ 0.9883545836193317,
342
+ 0.702112947075707,
343
+ 0.04902591977415252
344
+ ],
345
+ [
346
+ 0.8070259094114463,
347
+ 0.42592957516400076,
348
+ 0.029226304317383836
349
+ ],
350
+ [
351
+ 0.6179969187095739,
352
+ 0.21718060154935503,
353
+ 0.12486606393850391
354
+ ],
355
+ [
356
+ 0.7657614513086385,
357
+ 0.9267983573964786,
358
+ 0.43682321305183763
359
+ ],
360
+ [
361
+ 0.43645960989744914,
362
+ 0.15976226761106038,
363
+ 0.23532045968031362
364
+ ],
365
+ [
366
+ 0.6197884156018183,
367
+ 0.5137062245758843,
368
+ 0.555166481994378
369
+ ],
370
+ [
371
+ 0.009914977173205023,
372
+ 0.5641133198912778,
373
+ 0.8915306387449359
374
+ ],
375
+ [
376
+ 0.7221903633704574,
377
+ 0.8805493794490765,
378
+ 0.09073781399921894
379
+ ],
380
+ [
381
+ 0.6539265157133692,
382
+ 0.12204272542550154,
383
+ 0.11617948848696029
384
+ ],
385
+ [
386
+ 0.03919698331596934,
387
+ 0.21490956558420804,
388
+ 0.2195184176901497
389
+ ],
390
+ [
391
+ 0.8164517538481597,
392
+ 0.9990149060769538,
393
+ 0.7627936714165153
394
+ ],
395
+ [
396
+ 0.012791868286934068,
397
+ 0.05521318102690733,
398
+ 0.07255394357481516
399
+ ],
400
+ [
401
+ 0.22687656314602933,
402
+ 0.9989573841401922,
403
+ 0.6418057309398649
404
+ ],
405
+ [
406
+ 0.2527523002952408,
407
+ 0.2865117982301657,
408
+ 0.08417790334177389
409
+ ],
410
+ [
411
+ 0.896482555702297,
412
+ 0.22113361268838963,
413
+ 0.2562243033368259
414
+ ],
415
+ [
416
+ 0.37238750356136296,
417
+ 0.3859833794854695,
418
+ 0.11718702288481557
419
+ ],
420
+ [
421
+ 0.6232006280890854,
422
+ 0.7006674271464707,
423
+ 0.4746547794050536
424
+ ],
425
+ [
426
+ 0.90438359815264,
427
+ 0.9275645145119442,
428
+ 0.028063034793261093
429
+ ],
430
+ [
431
+ 0.036507428943554666,
432
+ 0.2116269380808081,
433
+ 0.032640254981655625
434
+ ],
435
+ [
436
+ 0.24877342297685567,
437
+ 0.25103661178855863,
438
+ 0.5710519965080707
439
+ ],
440
+ [
441
+ 0.578759958694634,
442
+ 0.16288722440166228,
443
+ 0.5633607318603052
444
+ ],
445
+ [
446
+ 0.5271785151689664,
447
+ 0.8007885922332209,
448
+ 0.09027624637307546
449
+ ],
450
+ [
451
+ 0.6915775697939684,
452
+ 0.6866946246116017,
453
+ 0.0878510374004003
454
+ ]
455
+ ],
456
+ "weights": [
457
+ [
458
+ -147.766453615689
459
+ ],
460
+ [
461
+ -10.94315760973393
462
+ ],
463
+ [
464
+ 114.85560325501729
465
+ ],
466
+ [
467
+ 49.56940347657837
468
+ ],
469
+ [
470
+ -3.7323483533673425
471
+ ],
472
+ [
473
+ 28.58279829328694
474
+ ],
475
+ [
476
+ -19.696403235484013
477
+ ],
478
+ [
479
+ 35.59946962633967
480
+ ],
481
+ [
482
+ 19.802742519636524
483
+ ],
484
+ [
485
+ 52.90173504979168
486
+ ],
487
+ [
488
+ 39.71720300290349
489
+ ],
490
+ [
491
+ 17.107446590946438
492
+ ],
493
+ [
494
+ -42.218302731184565
495
+ ],
496
+ [
497
+ 116.49453892858276
498
+ ],
499
+ [
500
+ -115.62058476107973
501
+ ],
502
+ [
503
+ -4.4015125280873235
504
+ ],
505
+ [
506
+ -29.6445022627928
507
+ ],
508
+ [
509
+ 26.86809125030004
510
+ ],
511
+ [
512
+ 98.68888194362785
513
+ ],
514
+ [
515
+ 16.264390597119416
516
+ ],
517
+ [
518
+ -6.423192453697084
519
+ ],
520
+ [
521
+ 74.28593735230697
522
+ ],
523
+ [
524
+ -56.00424273662202
525
+ ],
526
+ [
527
+ -46.0830275072185
528
+ ],
529
+ [
530
+ -60.87434992007809
531
+ ],
532
+ [
533
+ 56.0673507519748
534
+ ],
535
+ [
536
+ 22.249159529138183
537
+ ],
538
+ [
539
+ 19.27103330477223
540
+ ],
541
+ [
542
+ -47.17365368580579
543
+ ],
544
+ [
545
+ -212.3192374746709
546
+ ],
547
+ [
548
+ -24.46503862454483
549
+ ],
550
+ [
551
+ 16.34045216154159
552
+ ],
553
+ [
554
+ -0.9788539608543942
555
+ ],
556
+ [
557
+ 27.322892450411814
558
+ ],
559
+ [
560
+ 59.40352555987863
561
+ ],
562
+ [
563
+ -87.4850970196062
564
+ ],
565
+ [
566
+ 68.49742710478677
567
+ ],
568
+ [
569
+ -16.1550292934553
570
+ ],
571
+ [
572
+ -25.22507777435203
573
+ ]
574
+ ],
575
+ "x_data_max": [
576
+ [
577
+ 69.82427239,
578
+ 23.20813534,
579
+ 99.31444659
580
+ ]
581
+ ],
582
+ "x_data_min": [
583
+ [
584
+ 35.88800364,
585
+ -14.87385778,
586
+ 31.76802818
587
+ ]
588
+ ],
589
+ "y_data_max": [
590
+ 0.575450211
591
+ ],
592
+ "y_data_min": [
593
+ 0.262358946
594
+ ],
595
+ "basis_function": "gaussian",
596
+ "x_data_columns": [
597
+ "water_temp",
598
+ "Air_Temperature",
599
+ "Heating_Duty"
600
+ ],
601
+ "regularization_parameter": 1e-05
602
+ }
603
+ },
604
+ "Pressure_Ratio": {
605
+ "map": {
606
+ "R2": "str",
607
+ "rmse": "str",
608
+ "sigma": "str",
609
+ "x_data": "numpy",
610
+ "centres": "numpy",
611
+ "weights": "numpy",
612
+ "x_data_max": "numpy",
613
+ "x_data_min": "numpy",
614
+ "y_data_max": "numpy",
615
+ "y_data_min": "numpy",
616
+ "basis_function": "str",
617
+ "x_data_columns": "list",
618
+ "regularization_parameter": "str"
619
+ },
620
+ "attr": {
621
+ "R2": 0.9999793576935017,
622
+ "rmse": 0.0013960352669842874,
623
+ "sigma": 0.2,
624
+ "x_data": [
625
+ [
626
+ 0.16215792285650138,
627
+ 0.3613582714181216,
628
+ 0.5444632151592417
629
+ ],
630
+ [
631
+ 0.9389589519914443,
632
+ 0.0,
633
+ 0.9468105645780902
634
+ ],
635
+ [
636
+ 0.5700143664143984,
637
+ 0.5705165899940691,
638
+ 0.36974324868574476
639
+ ],
640
+ [
641
+ 0.47323303007494005,
642
+ 0.6273913875177971,
643
+ 0.012981727094358889
644
+ ],
645
+ [
646
+ 0.8713617660161885,
647
+ 0.14330135596642318,
648
+ 0.4251915566517748
649
+ ],
650
+ [
651
+ 0.3306441522095737,
652
+ 0.9498064572414376,
653
+ 0.2731002135158212
654
+ ],
655
+ [
656
+ 0.28675639274574055,
657
+ 0.8519249769246321,
658
+ 0.0925203961528594
659
+ ],
660
+ [
661
+ 0.0,
662
+ 0.8388836529467868,
663
+ 1.0
664
+ ],
665
+ [
666
+ 0.23429819638023686,
667
+ 0.902636555594231,
668
+ 0.1998370709763884
669
+ ],
670
+ [
671
+ 0.41249256019048947,
672
+ 1.0,
673
+ 0.5770232550809795
674
+ ],
675
+ [
676
+ 0.14612367365814188,
677
+ 0.1069400952089663,
678
+ 0.7806524514731853
679
+ ],
680
+ [
681
+ 0.6262663513943322,
682
+ 0.18739774815651772,
683
+ 0.0
684
+ ],
685
+ [
686
+ 0.9112689741414192,
687
+ 0.5201312647839689,
688
+ 0.5136037201768785
689
+ ],
690
+ [
691
+ 0.017881735451543906,
692
+ 0.5146130245401399,
693
+ 0.6772721177060556
694
+ ],
695
+ [
696
+ 0.5140189909652338,
697
+ 0.9030671270705801,
698
+ 0.6337192025515718
699
+ ],
700
+ [
701
+ 1.0,
702
+ 0.7115334308951737,
703
+ 0.6863282017205625
704
+ ],
705
+ [
706
+ 0.9883545836193317,
707
+ 0.702112947075707,
708
+ 0.04902591977415252
709
+ ],
710
+ [
711
+ 0.8070259094114463,
712
+ 0.42592957516400076,
713
+ 0.029226304317383836
714
+ ],
715
+ [
716
+ 0.6179969187095739,
717
+ 0.21718060154935503,
718
+ 0.12486606393850391
719
+ ],
720
+ [
721
+ 0.7657614513086385,
722
+ 0.9267983573964786,
723
+ 0.43682321305183763
724
+ ],
725
+ [
726
+ 0.43645960989744914,
727
+ 0.15976226761106038,
728
+ 0.23532045968031362
729
+ ],
730
+ [
731
+ 0.6197884156018183,
732
+ 0.5137062245758843,
733
+ 0.555166481994378
734
+ ],
735
+ [
736
+ 0.009914977173205023,
737
+ 0.5641133198912778,
738
+ 0.8915306387449359
739
+ ],
740
+ [
741
+ 0.7221903633704574,
742
+ 0.8805493794490765,
743
+ 0.09073781399921894
744
+ ],
745
+ [
746
+ 0.6539265157133692,
747
+ 0.12204272542550154,
748
+ 0.11617948848696029
749
+ ],
750
+ [
751
+ 0.03919698331596934,
752
+ 0.21490956558420804,
753
+ 0.2195184176901497
754
+ ],
755
+ [
756
+ 0.8164517538481597,
757
+ 0.9990149060769538,
758
+ 0.7627936714165153
759
+ ],
760
+ [
761
+ 0.012791868286934068,
762
+ 0.05521318102690733,
763
+ 0.07255394357481516
764
+ ],
765
+ [
766
+ 0.22687656314602933,
767
+ 0.9989573841401922,
768
+ 0.6418057309398649
769
+ ],
770
+ [
771
+ 0.2527523002952408,
772
+ 0.2865117982301657,
773
+ 0.08417790334177389
774
+ ],
775
+ [
776
+ 0.896482555702297,
777
+ 0.22113361268838963,
778
+ 0.2562243033368259
779
+ ],
780
+ [
781
+ 0.37238750356136296,
782
+ 0.3859833794854695,
783
+ 0.11718702288481557
784
+ ],
785
+ [
786
+ 0.6232006280890854,
787
+ 0.7006674271464707,
788
+ 0.4746547794050536
789
+ ],
790
+ [
791
+ 0.90438359815264,
792
+ 0.9275645145119442,
793
+ 0.028063034793261093
794
+ ],
795
+ [
796
+ 0.036507428943554666,
797
+ 0.2116269380808081,
798
+ 0.032640254981655625
799
+ ],
800
+ [
801
+ 0.24877342297685567,
802
+ 0.25103661178855863,
803
+ 0.5710519965080707
804
+ ],
805
+ [
806
+ 0.578759958694634,
807
+ 0.16288722440166228,
808
+ 0.5633607318603052
809
+ ],
810
+ [
811
+ 0.5271785151689664,
812
+ 0.8007885922332209,
813
+ 0.09027624637307546
814
+ ],
815
+ [
816
+ 0.6915775697939684,
817
+ 0.6866946246116017,
818
+ 0.0878510374004003
819
+ ]
820
+ ],
821
+ "centres": [
822
+ [
823
+ 0.16215792285650138,
824
+ 0.3613582714181216,
825
+ 0.5444632151592417
826
+ ],
827
+ [
828
+ 0.9389589519914443,
829
+ 0.0,
830
+ 0.9468105645780902
831
+ ],
832
+ [
833
+ 0.5700143664143984,
834
+ 0.5705165899940691,
835
+ 0.36974324868574476
836
+ ],
837
+ [
838
+ 0.47323303007494005,
839
+ 0.6273913875177971,
840
+ 0.012981727094358889
841
+ ],
842
+ [
843
+ 0.8713617660161885,
844
+ 0.14330135596642318,
845
+ 0.4251915566517748
846
+ ],
847
+ [
848
+ 0.3306441522095737,
849
+ 0.9498064572414376,
850
+ 0.2731002135158212
851
+ ],
852
+ [
853
+ 0.28675639274574055,
854
+ 0.8519249769246321,
855
+ 0.0925203961528594
856
+ ],
857
+ [
858
+ 0.0,
859
+ 0.8388836529467868,
860
+ 1.0
861
+ ],
862
+ [
863
+ 0.23429819638023686,
864
+ 0.902636555594231,
865
+ 0.1998370709763884
866
+ ],
867
+ [
868
+ 0.41249256019048947,
869
+ 1.0,
870
+ 0.5770232550809795
871
+ ],
872
+ [
873
+ 0.14612367365814188,
874
+ 0.1069400952089663,
875
+ 0.7806524514731853
876
+ ],
877
+ [
878
+ 0.6262663513943322,
879
+ 0.18739774815651772,
880
+ 0.0
881
+ ],
882
+ [
883
+ 0.9112689741414192,
884
+ 0.5201312647839689,
885
+ 0.5136037201768785
886
+ ],
887
+ [
888
+ 0.017881735451543906,
889
+ 0.5146130245401399,
890
+ 0.6772721177060556
891
+ ],
892
+ [
893
+ 0.5140189909652338,
894
+ 0.9030671270705801,
895
+ 0.6337192025515718
896
+ ],
897
+ [
898
+ 1.0,
899
+ 0.7115334308951737,
900
+ 0.6863282017205625
901
+ ],
902
+ [
903
+ 0.9883545836193317,
904
+ 0.702112947075707,
905
+ 0.04902591977415252
906
+ ],
907
+ [
908
+ 0.8070259094114463,
909
+ 0.42592957516400076,
910
+ 0.029226304317383836
911
+ ],
912
+ [
913
+ 0.6179969187095739,
914
+ 0.21718060154935503,
915
+ 0.12486606393850391
916
+ ],
917
+ [
918
+ 0.7657614513086385,
919
+ 0.9267983573964786,
920
+ 0.43682321305183763
921
+ ],
922
+ [
923
+ 0.43645960989744914,
924
+ 0.15976226761106038,
925
+ 0.23532045968031362
926
+ ],
927
+ [
928
+ 0.6197884156018183,
929
+ 0.5137062245758843,
930
+ 0.555166481994378
931
+ ],
932
+ [
933
+ 0.009914977173205023,
934
+ 0.5641133198912778,
935
+ 0.8915306387449359
936
+ ],
937
+ [
938
+ 0.7221903633704574,
939
+ 0.8805493794490765,
940
+ 0.09073781399921894
941
+ ],
942
+ [
943
+ 0.6539265157133692,
944
+ 0.12204272542550154,
945
+ 0.11617948848696029
946
+ ],
947
+ [
948
+ 0.03919698331596934,
949
+ 0.21490956558420804,
950
+ 0.2195184176901497
951
+ ],
952
+ [
953
+ 0.8164517538481597,
954
+ 0.9990149060769538,
955
+ 0.7627936714165153
956
+ ],
957
+ [
958
+ 0.012791868286934068,
959
+ 0.05521318102690733,
960
+ 0.07255394357481516
961
+ ],
962
+ [
963
+ 0.22687656314602933,
964
+ 0.9989573841401922,
965
+ 0.6418057309398649
966
+ ],
967
+ [
968
+ 0.2527523002952408,
969
+ 0.2865117982301657,
970
+ 0.08417790334177389
971
+ ],
972
+ [
973
+ 0.896482555702297,
974
+ 0.22113361268838963,
975
+ 0.2562243033368259
976
+ ],
977
+ [
978
+ 0.37238750356136296,
979
+ 0.3859833794854695,
980
+ 0.11718702288481557
981
+ ],
982
+ [
983
+ 0.6232006280890854,
984
+ 0.7006674271464707,
985
+ 0.4746547794050536
986
+ ],
987
+ [
988
+ 0.90438359815264,
989
+ 0.9275645145119442,
990
+ 0.028063034793261093
991
+ ],
992
+ [
993
+ 0.036507428943554666,
994
+ 0.2116269380808081,
995
+ 0.032640254981655625
996
+ ],
997
+ [
998
+ 0.24877342297685567,
999
+ 0.25103661178855863,
1000
+ 0.5710519965080707
1001
+ ],
1002
+ [
1003
+ 0.578759958694634,
1004
+ 0.16288722440166228,
1005
+ 0.5633607318603052
1006
+ ],
1007
+ [
1008
+ 0.5271785151689664,
1009
+ 0.8007885922332209,
1010
+ 0.09027624637307546
1011
+ ],
1012
+ [
1013
+ 0.6915775697939684,
1014
+ 0.6866946246116017,
1015
+ 0.0878510374004003
1016
+ ]
1017
+ ],
1018
+ "weights": [
1019
+ [
1020
+ 259.7852019146121
1021
+ ],
1022
+ [
1023
+ 103.15740007740078
1024
+ ],
1025
+ [
1026
+ -96.81186527876343
1027
+ ],
1028
+ [
1029
+ -28.420849255178837
1030
+ ],
1031
+ [
1032
+ -61.3691010925927
1033
+ ],
1034
+ [
1035
+ 30.905265025295193
1036
+ ],
1037
+ [
1038
+ -10.981573283906073
1039
+ ],
1040
+ [
1041
+ -145.51187284254047
1042
+ ],
1043
+ [
1044
+ 9.45741352198047
1045
+ ],
1046
+ [
1047
+ 83.02039226644081
1048
+ ],
1049
+ [
1050
+ -129.87825223079562
1051
+ ],
1052
+ [
1053
+ 35.46365592079792
1054
+ ],
1055
+ [
1056
+ -174.81624262963624
1057
+ ],
1058
+ [
1059
+ 92.80127851750694
1060
+ ],
1061
+ [
1062
+ 22.854811846999837
1063
+ ],
1064
+ [
1065
+ 212.03344365457178
1066
+ ],
1067
+ [
1068
+ 324.21155708991637
1069
+ ],
1070
+ [
1071
+ -77.20258739164001
1072
+ ],
1073
+ [
1074
+ -33.40165619842628
1075
+ ],
1076
+ [
1077
+ -164.75557252614772
1078
+ ],
1079
+ [
1080
+ 108.28306037403672
1081
+ ],
1082
+ [
1083
+ -194.07013450622617
1084
+ ],
1085
+ [
1086
+ -10.413302587376165
1087
+ ],
1088
+ [
1089
+ -191.97705233637498
1090
+ ],
1091
+ [
1092
+ 12.10031266500755
1093
+ ],
1094
+ [
1095
+ 31.697554682222744
1096
+ ],
1097
+ [
1098
+ 48.48961873144708
1099
+ ],
1100
+ [
1101
+ -180.71287892643159
1102
+ ],
1103
+ [
1104
+ 130.3446643670395
1105
+ ],
1106
+ [
1107
+ 216.79764470137616
1108
+ ],
1109
+ [
1110
+ 51.65815614997996
1111
+ ],
1112
+ [
1113
+ 163.9683870756853
1114
+ ],
1115
+ [
1116
+ -158.12991195665018
1117
+ ],
1118
+ [
1119
+ 140.1060689117603
1120
+ ],
1121
+ [
1122
+ -81.37146884877438
1123
+ ],
1124
+ [
1125
+ 184.02693783213363
1126
+ ],
1127
+ [
1128
+ -208.91261002156534
1129
+ ],
1130
+ [
1131
+ -107.11356776262255
1132
+ ],
1133
+ [
1134
+ -200.89743695562356
1135
+ ]
1136
+ ],
1137
+ "x_data_max": [
1138
+ [
1139
+ 69.82427239,
1140
+ 23.20813534,
1141
+ 99.31444659
1142
+ ]
1143
+ ],
1144
+ "x_data_min": [
1145
+ [
1146
+ 35.88800364,
1147
+ -14.87385778,
1148
+ 31.76802818
1149
+ ]
1150
+ ],
1151
+ "y_data_max": [
1152
+ 6.851719249
1153
+ ],
1154
+ "y_data_min": [
1155
+ 3.372382716
1156
+ ],
1157
+ "basis_function": "gaussian",
1158
+ "x_data_columns": [
1159
+ "water_temp",
1160
+ "Air_Temperature",
1161
+ "Heating_Duty"
1162
+ ],
1163
+ "regularization_parameter": 1e-05
1164
+ }
1165
+ },
1166
+ "Work_Mechanical": {
1167
+ "map": {
1168
+ "R2": "str",
1169
+ "rmse": "str",
1170
+ "sigma": "str",
1171
+ "x_data": "numpy",
1172
+ "centres": "numpy",
1173
+ "weights": "numpy",
1174
+ "x_data_max": "numpy",
1175
+ "x_data_min": "numpy",
1176
+ "y_data_max": "numpy",
1177
+ "y_data_min": "numpy",
1178
+ "basis_function": "str",
1179
+ "x_data_columns": "list",
1180
+ "regularization_parameter": "str"
1181
+ },
1182
+ "attr": {
1183
+ "R2": 0.9999808132142348,
1184
+ "rmse": 0.0010061926794651959,
1185
+ "sigma": 0.2,
1186
+ "x_data": [
1187
+ [
1188
+ 0.16215792285650138,
1189
+ 0.3613582714181216,
1190
+ 0.5444632151592417
1191
+ ],
1192
+ [
1193
+ 0.9389589519914443,
1194
+ 0.0,
1195
+ 0.9468105645780902
1196
+ ],
1197
+ [
1198
+ 0.5700143664143984,
1199
+ 0.5705165899940691,
1200
+ 0.36974324868574476
1201
+ ],
1202
+ [
1203
+ 0.47323303007494005,
1204
+ 0.6273913875177971,
1205
+ 0.012981727094358889
1206
+ ],
1207
+ [
1208
+ 0.8713617660161885,
1209
+ 0.14330135596642318,
1210
+ 0.4251915566517748
1211
+ ],
1212
+ [
1213
+ 0.3306441522095737,
1214
+ 0.9498064572414376,
1215
+ 0.2731002135158212
1216
+ ],
1217
+ [
1218
+ 0.28675639274574055,
1219
+ 0.8519249769246321,
1220
+ 0.0925203961528594
1221
+ ],
1222
+ [
1223
+ 0.0,
1224
+ 0.8388836529467868,
1225
+ 1.0
1226
+ ],
1227
+ [
1228
+ 0.23429819638023686,
1229
+ 0.902636555594231,
1230
+ 0.1998370709763884
1231
+ ],
1232
+ [
1233
+ 0.41249256019048947,
1234
+ 1.0,
1235
+ 0.5770232550809795
1236
+ ],
1237
+ [
1238
+ 0.14612367365814188,
1239
+ 0.1069400952089663,
1240
+ 0.7806524514731853
1241
+ ],
1242
+ [
1243
+ 0.6262663513943322,
1244
+ 0.18739774815651772,
1245
+ 0.0
1246
+ ],
1247
+ [
1248
+ 0.9112689741414192,
1249
+ 0.5201312647839689,
1250
+ 0.5136037201768785
1251
+ ],
1252
+ [
1253
+ 0.017881735451543906,
1254
+ 0.5146130245401399,
1255
+ 0.6772721177060556
1256
+ ],
1257
+ [
1258
+ 0.5140189909652338,
1259
+ 0.9030671270705801,
1260
+ 0.6337192025515718
1261
+ ],
1262
+ [
1263
+ 1.0,
1264
+ 0.7115334308951737,
1265
+ 0.6863282017205625
1266
+ ],
1267
+ [
1268
+ 0.9883545836193317,
1269
+ 0.702112947075707,
1270
+ 0.04902591977415252
1271
+ ],
1272
+ [
1273
+ 0.8070259094114463,
1274
+ 0.42592957516400076,
1275
+ 0.029226304317383836
1276
+ ],
1277
+ [
1278
+ 0.6179969187095739,
1279
+ 0.21718060154935503,
1280
+ 0.12486606393850391
1281
+ ],
1282
+ [
1283
+ 0.7657614513086385,
1284
+ 0.9267983573964786,
1285
+ 0.43682321305183763
1286
+ ],
1287
+ [
1288
+ 0.43645960989744914,
1289
+ 0.15976226761106038,
1290
+ 0.23532045968031362
1291
+ ],
1292
+ [
1293
+ 0.6197884156018183,
1294
+ 0.5137062245758843,
1295
+ 0.555166481994378
1296
+ ],
1297
+ [
1298
+ 0.009914977173205023,
1299
+ 0.5641133198912778,
1300
+ 0.8915306387449359
1301
+ ],
1302
+ [
1303
+ 0.7221903633704574,
1304
+ 0.8805493794490765,
1305
+ 0.09073781399921894
1306
+ ],
1307
+ [
1308
+ 0.6539265157133692,
1309
+ 0.12204272542550154,
1310
+ 0.11617948848696029
1311
+ ],
1312
+ [
1313
+ 0.03919698331596934,
1314
+ 0.21490956558420804,
1315
+ 0.2195184176901497
1316
+ ],
1317
+ [
1318
+ 0.8164517538481597,
1319
+ 0.9990149060769538,
1320
+ 0.7627936714165153
1321
+ ],
1322
+ [
1323
+ 0.012791868286934068,
1324
+ 0.05521318102690733,
1325
+ 0.07255394357481516
1326
+ ],
1327
+ [
1328
+ 0.22687656314602933,
1329
+ 0.9989573841401922,
1330
+ 0.6418057309398649
1331
+ ],
1332
+ [
1333
+ 0.2527523002952408,
1334
+ 0.2865117982301657,
1335
+ 0.08417790334177389
1336
+ ],
1337
+ [
1338
+ 0.896482555702297,
1339
+ 0.22113361268838963,
1340
+ 0.2562243033368259
1341
+ ],
1342
+ [
1343
+ 0.37238750356136296,
1344
+ 0.3859833794854695,
1345
+ 0.11718702288481557
1346
+ ],
1347
+ [
1348
+ 0.6232006280890854,
1349
+ 0.7006674271464707,
1350
+ 0.4746547794050536
1351
+ ],
1352
+ [
1353
+ 0.90438359815264,
1354
+ 0.9275645145119442,
1355
+ 0.028063034793261093
1356
+ ],
1357
+ [
1358
+ 0.036507428943554666,
1359
+ 0.2116269380808081,
1360
+ 0.032640254981655625
1361
+ ],
1362
+ [
1363
+ 0.24877342297685567,
1364
+ 0.25103661178855863,
1365
+ 0.5710519965080707
1366
+ ],
1367
+ [
1368
+ 0.578759958694634,
1369
+ 0.16288722440166228,
1370
+ 0.5633607318603052
1371
+ ],
1372
+ [
1373
+ 0.5271785151689664,
1374
+ 0.8007885922332209,
1375
+ 0.09027624637307546
1376
+ ],
1377
+ [
1378
+ 0.6915775697939684,
1379
+ 0.6866946246116017,
1380
+ 0.0878510374004003
1381
+ ]
1382
+ ],
1383
+ "centres": [
1384
+ [
1385
+ 0.16215792285650138,
1386
+ 0.3613582714181216,
1387
+ 0.5444632151592417
1388
+ ],
1389
+ [
1390
+ 0.9389589519914443,
1391
+ 0.0,
1392
+ 0.9468105645780902
1393
+ ],
1394
+ [
1395
+ 0.5700143664143984,
1396
+ 0.5705165899940691,
1397
+ 0.36974324868574476
1398
+ ],
1399
+ [
1400
+ 0.47323303007494005,
1401
+ 0.6273913875177971,
1402
+ 0.012981727094358889
1403
+ ],
1404
+ [
1405
+ 0.8713617660161885,
1406
+ 0.14330135596642318,
1407
+ 0.4251915566517748
1408
+ ],
1409
+ [
1410
+ 0.3306441522095737,
1411
+ 0.9498064572414376,
1412
+ 0.2731002135158212
1413
+ ],
1414
+ [
1415
+ 0.28675639274574055,
1416
+ 0.8519249769246321,
1417
+ 0.0925203961528594
1418
+ ],
1419
+ [
1420
+ 0.0,
1421
+ 0.8388836529467868,
1422
+ 1.0
1423
+ ],
1424
+ [
1425
+ 0.23429819638023686,
1426
+ 0.902636555594231,
1427
+ 0.1998370709763884
1428
+ ],
1429
+ [
1430
+ 0.41249256019048947,
1431
+ 1.0,
1432
+ 0.5770232550809795
1433
+ ],
1434
+ [
1435
+ 0.14612367365814188,
1436
+ 0.1069400952089663,
1437
+ 0.7806524514731853
1438
+ ],
1439
+ [
1440
+ 0.6262663513943322,
1441
+ 0.18739774815651772,
1442
+ 0.0
1443
+ ],
1444
+ [
1445
+ 0.9112689741414192,
1446
+ 0.5201312647839689,
1447
+ 0.5136037201768785
1448
+ ],
1449
+ [
1450
+ 0.017881735451543906,
1451
+ 0.5146130245401399,
1452
+ 0.6772721177060556
1453
+ ],
1454
+ [
1455
+ 0.5140189909652338,
1456
+ 0.9030671270705801,
1457
+ 0.6337192025515718
1458
+ ],
1459
+ [
1460
+ 1.0,
1461
+ 0.7115334308951737,
1462
+ 0.6863282017205625
1463
+ ],
1464
+ [
1465
+ 0.9883545836193317,
1466
+ 0.702112947075707,
1467
+ 0.04902591977415252
1468
+ ],
1469
+ [
1470
+ 0.8070259094114463,
1471
+ 0.42592957516400076,
1472
+ 0.029226304317383836
1473
+ ],
1474
+ [
1475
+ 0.6179969187095739,
1476
+ 0.21718060154935503,
1477
+ 0.12486606393850391
1478
+ ],
1479
+ [
1480
+ 0.7657614513086385,
1481
+ 0.9267983573964786,
1482
+ 0.43682321305183763
1483
+ ],
1484
+ [
1485
+ 0.43645960989744914,
1486
+ 0.15976226761106038,
1487
+ 0.23532045968031362
1488
+ ],
1489
+ [
1490
+ 0.6197884156018183,
1491
+ 0.5137062245758843,
1492
+ 0.555166481994378
1493
+ ],
1494
+ [
1495
+ 0.009914977173205023,
1496
+ 0.5641133198912778,
1497
+ 0.8915306387449359
1498
+ ],
1499
+ [
1500
+ 0.7221903633704574,
1501
+ 0.8805493794490765,
1502
+ 0.09073781399921894
1503
+ ],
1504
+ [
1505
+ 0.6539265157133692,
1506
+ 0.12204272542550154,
1507
+ 0.11617948848696029
1508
+ ],
1509
+ [
1510
+ 0.03919698331596934,
1511
+ 0.21490956558420804,
1512
+ 0.2195184176901497
1513
+ ],
1514
+ [
1515
+ 0.8164517538481597,
1516
+ 0.9990149060769538,
1517
+ 0.7627936714165153
1518
+ ],
1519
+ [
1520
+ 0.012791868286934068,
1521
+ 0.05521318102690733,
1522
+ 0.07255394357481516
1523
+ ],
1524
+ [
1525
+ 0.22687656314602933,
1526
+ 0.9989573841401922,
1527
+ 0.6418057309398649
1528
+ ],
1529
+ [
1530
+ 0.2527523002952408,
1531
+ 0.2865117982301657,
1532
+ 0.08417790334177389
1533
+ ],
1534
+ [
1535
+ 0.896482555702297,
1536
+ 0.22113361268838963,
1537
+ 0.2562243033368259
1538
+ ],
1539
+ [
1540
+ 0.37238750356136296,
1541
+ 0.3859833794854695,
1542
+ 0.11718702288481557
1543
+ ],
1544
+ [
1545
+ 0.6232006280890854,
1546
+ 0.7006674271464707,
1547
+ 0.4746547794050536
1548
+ ],
1549
+ [
1550
+ 0.90438359815264,
1551
+ 0.9275645145119442,
1552
+ 0.028063034793261093
1553
+ ],
1554
+ [
1555
+ 0.036507428943554666,
1556
+ 0.2116269380808081,
1557
+ 0.032640254981655625
1558
+ ],
1559
+ [
1560
+ 0.24877342297685567,
1561
+ 0.25103661178855863,
1562
+ 0.5710519965080707
1563
+ ],
1564
+ [
1565
+ 0.578759958694634,
1566
+ 0.16288722440166228,
1567
+ 0.5633607318603052
1568
+ ],
1569
+ [
1570
+ 0.5271785151689664,
1571
+ 0.8007885922332209,
1572
+ 0.09027624637307546
1573
+ ],
1574
+ [
1575
+ 0.6915775697939684,
1576
+ 0.6866946246116017,
1577
+ 0.0878510374004003
1578
+ ]
1579
+ ],
1580
+ "weights": [
1581
+ [
1582
+ 4.423135275414097
1583
+ ],
1584
+ [
1585
+ 129.52924741955758
1586
+ ],
1587
+ [
1588
+ 82.04064941042361
1589
+ ],
1590
+ [
1591
+ -30.473775234740515
1592
+ ],
1593
+ [
1594
+ -89.37513481812857
1595
+ ],
1596
+ [
1597
+ -43.867766643093375
1598
+ ],
1599
+ [
1600
+ 18.449766527834754
1601
+ ],
1602
+ [
1603
+ 9.165770621419597
1604
+ ],
1605
+ [
1606
+ 57.80677093529789
1607
+ ],
1608
+ [
1609
+ -5.502031674220348
1610
+ ],
1611
+ [
1612
+ -35.80332175426793
1613
+ ],
1614
+ [
1615
+ -180.57201190447307
1616
+ ],
1617
+ [
1618
+ -128.8731615391573
1619
+ ],
1620
+ [
1621
+ -65.33845242352027
1622
+ ],
1623
+ [
1624
+ 91.1858477827409
1625
+ ],
1626
+ [
1627
+ -232.12473851180948
1628
+ ],
1629
+ [
1630
+ 238.7154913033096
1631
+ ],
1632
+ [
1633
+ 106.18079256963097
1634
+ ],
1635
+ [
1636
+ -20.62207619982155
1637
+ ],
1638
+ [
1639
+ -22.32064132194614
1640
+ ],
1641
+ [
1642
+ -21.05956904906361
1643
+ ],
1644
+ [
1645
+ 36.17942634716837
1646
+ ],
1647
+ [
1648
+ -133.24878498148678
1649
+ ],
1650
+ [
1651
+ -127.00017456212208
1652
+ ],
1653
+ [
1654
+ -92.81018446604457
1655
+ ],
1656
+ [
1657
+ 122.99364182657791
1658
+ ],
1659
+ [
1660
+ 212.12491707030017
1661
+ ],
1662
+ [
1663
+ -93.81650273341847
1664
+ ],
1665
+ [
1666
+ -35.11399476676149
1667
+ ],
1668
+ [
1669
+ 33.11318403919404
1670
+ ],
1671
+ [
1672
+ 55.5924465779774
1673
+ ],
1674
+ [
1675
+ 63.034815365852864
1676
+ ],
1677
+ [
1678
+ 55.95448823080824
1679
+ ],
1680
+ [
1681
+ -130.9620004575063
1682
+ ],
1683
+ [
1684
+ 134.2551687439668
1685
+ ],
1686
+ [
1687
+ 9.369461634002619
1688
+ ],
1689
+ [
1690
+ 65.45683680294314
1691
+ ],
1692
+ [
1693
+ -66.26014528453379
1694
+ ],
1695
+ [
1696
+ 29.928718054681667
1697
+ ]
1698
+ ],
1699
+ "x_data_max": [
1700
+ [
1701
+ 69.82427239,
1702
+ 23.20813534,
1703
+ 99.31444659
1704
+ ]
1705
+ ],
1706
+ "x_data_min": [
1707
+ [
1708
+ 35.88800364,
1709
+ -14.87385778,
1710
+ 31.76802818
1711
+ ]
1712
+ ],
1713
+ "y_data_max": [
1714
+ 52.3759778
1715
+ ],
1716
+ "y_data_min": [
1717
+ 7.065436713
1718
+ ],
1719
+ "basis_function": "gaussian",
1720
+ "x_data_columns": [
1721
+ "water_temp",
1722
+ "Air_Temperature",
1723
+ "Heating_Duty"
1724
+ ],
1725
+ "regularization_parameter": 1e-05
1726
+ }
1727
+ }
1728
+ },
1729
+ "surrogate_type": "rbf"
1730
+ },
1731
+ "ids": {
1732
+ "input": [
1733
+ 1712,
1734
+ 1732,
1735
+ 1733
1736
+ ],
1737
+ "output": [
1738
+ 1734,
1739
+ 1735,
1740
+ 1736
1741
+ ]
1742
+ },
1743
+ "unitopNames": [
1744
+ "Work_Mechanical",
1745
+ "Air_Temperature",
1746
+ "Efficiency",
1747
+ "Heating_Duty",
1748
+ "Pressure_Ratio"
1749
+ ],
1750
+ "num_inlets": 1,
1751
+ "num_outlets": 1
1752
+ },
1753
+ "properties": {
1754
+ "Air_Temperature": {
1755
+ "data": [
1756
+ {
1757
+ "id": 1732,
1758
+ "value": 10.0,
1759
+ "controlled": null,
1760
+ "guess": false,
1761
+ "constraint": null
1762
+ }
1763
+ ],
1764
+ "unit": "dimensionless",
1765
+ "transformers": []
1766
+ },
1767
+ "Heating_Duty": {
1768
+ "data": [
1769
+ {
1770
+ "id": 1733,
1771
+ "value": 78.0,
1772
+ "controlled": null,
1773
+ "guess": false,
1774
+ "constraint": null
1775
+ }
1776
+ ],
1777
+ "unit": "dimensionless",
1778
+ "transformers": []
1779
+ },
1780
+ "Work_Mechanical": {
1781
+ "data": [
1782
+ {
1783
+ "id": 1734,
1784
+ "value": null,
1785
+ "controlled": null,
1786
+ "guess": false,
1787
+ "constraint": null
1788
+ }
1789
+ ],
1790
+ "unit": "dimensionless",
1791
+ "transformers": []
1792
+ },
1793
+ "Efficiency": {
1794
+ "data": [
1795
+ {
1796
+ "id": 1735,
1797
+ "value": null,
1798
+ "controlled": null,
1799
+ "guess": false,
1800
+ "constraint": null
1801
+ }
1802
+ ],
1803
+ "unit": "dimensionless",
1804
+ "transformers": []
1805
+ },
1806
+ "Pressure_Ratio": {
1807
+ "data": [
1808
+ {
1809
+ "id": 1736,
1810
+ "value": null,
1811
+ "controlled": null,
1812
+ "guess": false,
1813
+ "constraint": null
1814
+ }
1815
+ ],
1816
+ "unit": "dimensionless",
1817
+ "transformers": []
1818
+ }
1819
+ },
1820
+ "ports": {
1821
+ "inlet_1": {
1822
+ "id": 82,
1823
+ "properties": {
1824
+ "flow_mol": {
1825
+ "data": [
1826
+ {
1827
+ "id": 1711,
1828
+ "value": 1.0,
1829
+ "controlled": null,
1830
+ "guess": false,
1831
+ "constraint": null
1832
+ }
1833
+ ],
1834
+ "unit": "mol/s",
1835
+ "transformers": []
1836
+ },
1837
+ "pressure": {
1838
+ "data": [
1839
+ {
1840
+ "id": 1713,
1841
+ "value": 100.0,
1842
+ "controlled": null,
1843
+ "guess": false,
1844
+ "constraint": null
1845
+ }
1846
+ ],
1847
+ "unit": "kPa",
1848
+ "transformers": []
1849
+ },
1850
+ "enth_mass": {
1851
+ "data": [
1852
+ {
1853
+ "id": 1716,
1854
+ "value": null,
1855
+ "controlled": null,
1856
+ "guess": false,
1857
+ "constraint": null
1858
+ }
1859
+ ],
1860
+ "unit": "",
1861
+ "transformers": []
1862
+ },
1863
+ "enth_mol": {
1864
+ "data": [
1865
+ {
1866
+ "id": 1715,
1867
+ "value": null,
1868
+ "controlled": null,
1869
+ "guess": false,
1870
+ "constraint": null
1871
+ }
1872
+ ],
1873
+ "unit": "",
1874
+ "transformers": []
1875
+ },
1876
+ "mole_frac_comp": {
1877
+ "data": [
1878
+ {
1879
+ "discrete_indexes": [
1880
+ "water"
1881
+ ],
1882
+ "id": 1737,
1883
+ "value": 1.0,
1884
+ "controlled": null,
1885
+ "guess": false,
1886
+ "constraint": null
1887
+ }
1888
+ ],
1889
+ "unit": "dimensionless",
1890
+ "transformers": []
1891
+ },
1892
+ "temperature": {
1893
+ "data": [
1894
+ {
1895
+ "id": 1712,
1896
+ "value": 10.999999999998693,
1897
+ "controlled": null,
1898
+ "guess": false,
1899
+ "constraint": null
1900
+ }
1901
+ ],
1902
+ "unit": "degC",
1903
+ "transformers": []
1904
+ },
1905
+ "vapor_frac": {
1906
+ "data": [
1907
+ {
1908
+ "id": 1714,
1909
+ "value": null,
1910
+ "controlled": null,
1911
+ "guess": false,
1912
+ "constraint": null
1913
+ }
1914
+ ],
1915
+ "unit": "",
1916
+ "transformers": []
1917
+ },
1918
+ "flow_mass": {
1919
+ "data": [
1920
+ {
1921
+ "id": 1710,
1922
+ "value": null,
1923
+ "controlled": null,
1924
+ "guess": false,
1925
+ "constraint": null
1926
+ }
1927
+ ],
1928
+ "unit": "",
1929
+ "transformers": []
1930
+ },
1931
+ "flow_vol": {
1932
+ "data": [
1933
+ {
1934
+ "id": 1720,
1935
+ "value": null,
1936
+ "controlled": null,
1937
+ "guess": false,
1938
+ "constraint": null
1939
+ }
1940
+ ],
1941
+ "unit": "",
1942
+ "transformers": []
1943
+ },
1944
+ "entr_mass": {
1945
+ "data": [
1946
+ {
1947
+ "id": 1718,
1948
+ "value": null,
1949
+ "controlled": null,
1950
+ "guess": false,
1951
+ "constraint": null
1952
+ }
1953
+ ],
1954
+ "unit": "",
1955
+ "transformers": []
1956
+ },
1957
+ "entr_mol": {
1958
+ "data": [
1959
+ {
1960
+ "id": 1717,
1961
+ "value": null,
1962
+ "controlled": null,
1963
+ "guess": false,
1964
+ "constraint": null
1965
+ }
1966
+ ],
1967
+ "unit": "",
1968
+ "transformers": []
1969
+ },
1970
+ "total_energy_flow": {
1971
+ "data": [
1972
+ {
1973
+ "id": 1719,
1974
+ "value": null,
1975
+ "controlled": null,
1976
+ "guess": false,
1977
+ "constraint": null
1978
+ }
1979
+ ],
1980
+ "unit": "",
1981
+ "transformers": []
1982
+ }
1983
+ }
1984
+ },
1985
+ "outlet_1": {
1986
+ "id": 82,
1987
+ "properties": {
1988
+ "flow_mol": {
1989
+ "data": [
1990
+ {
1991
+ "id": 1722,
1992
+ "value": null,
1993
+ "controlled": null,
1994
+ "guess": false,
1995
+ "constraint": null
1996
+ }
1997
+ ],
1998
+ "unit": "",
1999
+ "transformers": []
2000
+ },
2001
+ "pressure": {
2002
+ "data": [
2003
+ {
2004
+ "id": 1724,
2005
+ "value": null,
2006
+ "controlled": null,
2007
+ "guess": false,
2008
+ "constraint": null
2009
+ }
2010
+ ],
2011
+ "unit": "",
2012
+ "transformers": []
2013
+ },
2014
+ "enth_mass": {
2015
+ "data": [
2016
+ {
2017
+ "id": 1727,
2018
+ "value": null,
2019
+ "controlled": null,
2020
+ "guess": false,
2021
+ "constraint": null
2022
+ }
2023
+ ],
2024
+ "unit": "",
2025
+ "transformers": []
2026
+ },
2027
+ "enth_mol": {
2028
+ "data": [
2029
+ {
2030
+ "id": 1726,
2031
+ "value": null,
2032
+ "controlled": null,
2033
+ "guess": false,
2034
+ "constraint": null
2035
+ }
2036
+ ],
2037
+ "unit": "",
2038
+ "transformers": []
2039
+ },
2040
+ "mole_frac_comp": {
2041
+ "data": [
2042
+ {
2043
+ "discrete_indexes": [
2044
+ "water"
2045
+ ],
2046
+ "id": 1738,
2047
+ "value": null,
2048
+ "controlled": null,
2049
+ "guess": false,
2050
+ "constraint": null
2051
+ }
2052
+ ],
2053
+ "unit": "",
2054
+ "transformers": []
2055
+ },
2056
+ "temperature": {
2057
+ "data": [
2058
+ {
2059
+ "id": 1723,
2060
+ "value": null,
2061
+ "controlled": null,
2062
+ "guess": false,
2063
+ "constraint": null
2064
+ }
2065
+ ],
2066
+ "unit": "",
2067
+ "transformers": []
2068
+ },
2069
+ "vapor_frac": {
2070
+ "data": [
2071
+ {
2072
+ "id": 1725,
2073
+ "value": null,
2074
+ "controlled": null,
2075
+ "guess": false,
2076
+ "constraint": null
2077
+ }
2078
+ ],
2079
+ "unit": "",
2080
+ "transformers": []
2081
+ },
2082
+ "flow_mass": {
2083
+ "data": [
2084
+ {
2085
+ "id": 1721,
2086
+ "value": null,
2087
+ "controlled": null,
2088
+ "guess": false,
2089
+ "constraint": null
2090
+ }
2091
+ ],
2092
+ "unit": "",
2093
+ "transformers": []
2094
+ },
2095
+ "flow_vol": {
2096
+ "data": [
2097
+ {
2098
+ "id": 1731,
2099
+ "value": null,
2100
+ "controlled": null,
2101
+ "guess": false,
2102
+ "constraint": null
2103
+ }
2104
+ ],
2105
+ "unit": "",
2106
+ "transformers": []
2107
+ },
2108
+ "entr_mass": {
2109
+ "data": [
2110
+ {
2111
+ "id": 1729,
2112
+ "value": null,
2113
+ "controlled": null,
2114
+ "guess": false,
2115
+ "constraint": null
2116
+ }
2117
+ ],
2118
+ "unit": "",
2119
+ "transformers": []
2120
+ },
2121
+ "entr_mol": {
2122
+ "data": [
2123
+ {
2124
+ "id": 1728,
2125
+ "value": null,
2126
+ "controlled": null,
2127
+ "guess": false,
2128
+ "constraint": null
2129
+ }
2130
+ ],
2131
+ "unit": "",
2132
+ "transformers": []
2133
+ },
2134
+ "total_energy_flow": {
2135
+ "data": [
2136
+ {
2137
+ "id": 1730,
2138
+ "value": null,
2139
+ "controlled": null,
2140
+ "guess": false,
2141
+ "constraint": null
2142
+ }
2143
+ ],
2144
+ "unit": "",
2145
+ "transformers": []
2146
+ }
2147
+ }
2148
+ }
2149
+ }
2150
+ }
2151
+ ],
2152
+ "arcs": [],
2153
+ "machineLearningBlock": null,
2154
+ "expressions": [],
2155
+ "optimizations": []
2156
+ }