Supercritical Power Plant¶
Supercritical Power Plant Flowsheet Example¶
1. Introduction¶
This example is to demonstrate a supercritical pulverized coal power plant model. The power plant consists of two major sub-systems (or flowsheets), a boiler heat exchanger network and a steam cycle. This jupyter notebook provides the workflow to import the steam cycle flowsheet, import the boiler heat exchanger network, connect and run both the flowsheets, and display the main results.
2. Model Description¶
The case study demonstrated here is for a ~620MW gross power output. The process flow diagram is shown in section 3 of this jupyter notebook. Figure 1 shows the boiler heat exchanger network, while, figure 2 shows the steam cycle system.
The streams connecting both the flowsheets are:
a) The main steam: that connects the boiler attemperator to the throttle valves of the high pressure turbine
b) The cold reheat: that connects the final stage of the high pressure turbine to the boiler reheater
c) The hot reheat: that connects the boiler reheater to the intermediate pressure turbine
d) The main feed water: that connects the last feed water heater to the boiler economizer
To get a more detailed description of the power plant flowsheet, review the SCPC_full_plant.py file. For details in terms of specific power plant units (for example dimensions, parameters, and variables), more information can be found at supercritical_steam_cycle.py and boiler_subflowsheet.py.
3. Process Flow Diagram (PFD)¶
from IPython.display import SVG, display
display('Boiler subsystem PFD',
SVG(filename='Boiler_scpc_PFD.svg'),
'Steam Cycle subsystem PFD',
SVG(filename='supercritical_steam_cycle.svg'))
'Boiler subsystem PFD'
'Steam Cycle subsystem PFD'
4. Run power plant model example¶
This example runs the main SCPC_full_plant.py script, which, imports two flowsheets (steam cycle and boiler heat exchanger network), builds arcs to connect both flowsheets, and run the full power plant model.
# import SCPC power plant
# initialize steam cycle, initialize boiler heat exchanger network, connect both flowsheets,
# and run SCPC plant.
from idaes.models_extra.power_generation.flowsheets.supercritical_power_plant.SCPC_full_plant import main
m, res = main()
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.inlet_stage[1].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.inlet_stage[2].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.inlet_stage[3].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.inlet_stage[4].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.hp_stages[1].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.hp_stages[2].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.hp_stages[3].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.hp_stages[4].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.hp_stages[5].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.hp_stages[6].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.hp_stages[7].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[1].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[2].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[3].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[4].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[5].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[6].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[7].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[8].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[9].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.ip_stages[10].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[1].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[2].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[3].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[4].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[5].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[6].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[7].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[8].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[9].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[10].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.lp_stages[11].control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.turb.outlet_stage.control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.cond_pump.control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh1.condense.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh1.condense.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh1_pump.control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.condense.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.condense.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.desuperheat.hot_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.desuperheat.cold_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.desuperheat.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.desuperheat.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.cooling.hot_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.cooling.cold_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.cooling.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh2.cooling.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.condense.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.condense.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.desuperheat.hot_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.desuperheat.cold_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.desuperheat.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.desuperheat.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.cooling.hot_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.cooling.cold_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.cooling.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh3.cooling.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.condense.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.condense.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.desuperheat.hot_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.desuperheat.cold_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.desuperheat.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.desuperheat.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.cooling.hot_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.cooling.cold_side.heat
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.cooling.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh4.cooling.area
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.bfp.control_volume.work
2023-03-04 01:41:52 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.bfpt.control_volume.work
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.condense.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.condense.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.desuperheat.hot_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.desuperheat.cold_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.desuperheat.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.desuperheat.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.cooling.hot_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.cooling.cold_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.cooling.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh6.cooling.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.condense.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.condense.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.desuperheat.hot_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.desuperheat.cold_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.desuperheat.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.desuperheat.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.cooling.hot_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.cooling.cold_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.cooling.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh7.cooling.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.condense.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.condense.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.desuperheat.hot_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.desuperheat.cold_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.desuperheat.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.desuperheat.area
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.cooling.hot_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.cooling.cold_side.heat
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.cooling.overall_heat_transfer_coefficient[0.0]
2023-03-04 01:41:53 [WARNING] idaes.core.util.scaling: Missing scaling factor for fs.fwh8.cooling.area
2023-03-04 01:41:53 [INFO] idaes.init.Steam Cycle Model: Starting initialization
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.inlet_split: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[1]: Steam valve intialization started
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[1]: Steam valve intialization complete
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[2]: Steam valve intialization started
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[2]: Steam valve intialization complete
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[3]: Steam valve intialization started
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[3]: Steam valve intialization complete
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[4]: Steam valve intialization started
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.throttle_valve[4]: Steam valve intialization complete
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.inlet_stage[1]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.inlet_stage[2]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.inlet_stage[3]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.inlet_stage[4]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.inlet_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:53 [INFO] idaes.init.fs.turb.hp_split[4]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.hp_split[7]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.ip_split[5]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.ip_split[10]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.lp_split[4]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.lp_split[8]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.lp_split[10]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.lp_split[11]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.outlet_stage: Initialization Complete (Outlet Stage): optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.inlet_split: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.throttle_valve[1]: Steam valve intialization started
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.throttle_valve[1]: Steam valve intialization complete
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.throttle_valve[2]: Steam valve intialization started
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.throttle_valve[2]: Steam valve intialization complete
2023-03-04 01:41:54 [INFO] idaes.init.fs.turb.throttle_valve[3]: Steam valve intialization started
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.throttle_valve[3]: Steam valve intialization complete
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.throttle_valve[4]: Steam valve intialization started
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.throttle_valve[4]: Steam valve intialization complete
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.inlet_stage[1]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.inlet_stage[2]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.inlet_stage[3]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.inlet_stage[4]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.inlet_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.hp_split[4]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.hp_split[7]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.ip_split[5]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:55 [INFO] idaes.init.fs.turb.ip_split[10]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:56 [INFO] idaes.init.fs.turb.lp_split[4]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:56 [INFO] idaes.init.fs.turb.lp_split[8]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:56 [INFO] idaes.init.fs.turb.lp_split[10]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:56 [INFO] idaes.init.fs.turb.lp_split[11]: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:56 [INFO] idaes.init.fs.turb.outlet_stage: Initialization Complete (Outlet Stage): optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.Steam Cycle Model: Full turbine solve complete: optimal - Optimal Solution Found
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: WARNING: model contains export suffix
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: 'fs.bfpt.control_volume.properties_out[0.0].scaling_factor' that contains
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: 63 component keys that are not exported as part of the NL file. Skipping.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: WARNING: model contains export suffix
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: 'fs.bfpt.control_volume.properties_in[0.0].scaling_factor' that contains
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: 66 component keys that are not exported as part of the NL file. Skipping.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Ipopt 3.13.2: nlp_scaling_method=gradient-based
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: tol=1e-06
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: max_iter=200
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: ******************************************************************************
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: This program contains Ipopt, a library for large-scale nonlinear optimization.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Ipopt is released as open source code under the Eclipse Public License (EPL).
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: For more information visit http://projects.coin-or.org/Ipopt
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: This version of Ipopt was compiled from source code available at
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: https://github.com/IDAES/Ipopt as part of the Institute for the Design of
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Advanced Energy Systems Process Systems Engineering Framework (IDAES PSE
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Framework) Copyright (c) 2018-2019. See https://github.com/IDAES/idaes-pse.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: This version of Ipopt was compiled using HSL, a collection of Fortran codes
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: for large-scale scientific computation. All technical papers, sales and
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: publicity material resulting from use of the HSL codes within IPOPT must
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: contain the following acknowledgement:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: HSL, a collection of Fortran codes for large-scale scientific
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: computation. See http://www.hsl.rl.ac.uk.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: ******************************************************************************
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: This is Ipopt version 3.13.2, running with linear solver ma27.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of nonzeros in equality constraint Jacobian...: 9
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of nonzeros in inequality constraint Jacobian.: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of nonzeros in Lagrangian Hessian.............: 4
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Total number of variables............................: 5
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: variables with only lower bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: variables with lower and upper bounds: 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: variables with only upper bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Total number of equality constraints.................: 5
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Total number of inequality constraints...............: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: inequality constraints with only lower bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: inequality constraints with lower and upper bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: inequality constraints with only upper bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: iter objective inf_pr inf_du lg(mu) ||d|| lg(rg) alpha_du alpha_pr ls
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: 0 0.0000000e+00 5.46e+00 0.00e+00 -1.0 0.00e+00 - 0.00e+00 0.00e+00 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: 1 0.0000000e+00 8.88e-16 1.00e-07 -1.0 5.46e+07 - 9.90e-01 1.00e+00h 1
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of Iterations....: 1
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: (scaled) (unscaled)
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Objective...............: 0.0000000000000000e+00 0.0000000000000000e+00
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Dual infeasibility......: 0.0000000000000000e+00 0.0000000000000000e+00
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Constraint violation....: 8.8817841970012523e-16 8.8817841970012523e-16
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Complementarity.........: 0.0000000000000000e+00 0.0000000000000000e+00
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Overall NLP error.......: 8.8817841970012523e-16 8.8817841970012523e-16
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of objective function evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of objective gradient evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of equality constraint evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of inequality constraint evaluations = 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of equality constraint Jacobian evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of inequality constraint Jacobian evaluations = 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Number of Lagrangian Hessian evaluations = 1
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Total CPU secs in IPOPT (w/o function evaluations) = 0.005
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: Total CPU secs in NLP function evaluations = 0.000
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.bfpt: EXIT: Optimal Solution Found.
2023-03-04 01:41:57 [INFO] idaes.init.fs.condenser_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.condenser.hot_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.condenser.cold_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.hotwell: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1.drain_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:57 [WARNING] idaes.init.fs.fwh1: The steam sat. temperature (329.33327413754284) is near the feedwater inlet temperature (299.90239563835274)
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1.condense.hot_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1.condense.cold_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1.condense: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1.condense: Initialization Complete (w/ extraction calc): optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1: Condensing hot side inlet delta T = 12.51332609528194
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1: Condensing hot side outlet delta T = 29.430878499188548
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1: Steam Flow = 1345.063521625939
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: WARNING: model contains export suffix
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: 'fs.fwh1_pump.control_volume.properties_out[0.0].scaling_factor' that
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: contains 63 component keys that are not exported as part of the NL file.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Skipping.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: WARNING: model contains export suffix
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: 'fs.fwh1_pump.control_volume.properties_in[0.0].scaling_factor' that
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: contains 66 component keys that are not exported as part of the NL file.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Skipping.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Ipopt 3.13.2: nlp_scaling_method=gradient-based
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: tol=1e-06
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: max_iter=200
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: ******************************************************************************
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: This program contains Ipopt, a library for large-scale nonlinear optimization.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Ipopt is released as open source code under the Eclipse Public License (EPL).
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: For more information visit http://projects.coin-or.org/Ipopt
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: This version of Ipopt was compiled from source code available at
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: https://github.com/IDAES/Ipopt as part of the Institute for the Design of
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Advanced Energy Systems Process Systems Engineering Framework (IDAES PSE
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Framework) Copyright (c) 2018-2019. See https://github.com/IDAES/idaes-pse.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: This version of Ipopt was compiled using HSL, a collection of Fortran codes
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: for large-scale scientific computation. All technical papers, sales and
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: publicity material resulting from use of the HSL codes within IPOPT must
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: contain the following acknowledgement:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: HSL, a collection of Fortran codes for large-scale scientific
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: computation. See http://www.hsl.rl.ac.uk.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: ******************************************************************************
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: This is Ipopt version 3.13.2, running with linear solver ma27.
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of nonzeros in equality constraint Jacobian...: 9
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of nonzeros in inequality constraint Jacobian.: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of nonzeros in Lagrangian Hessian.............: 4
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Total number of variables............................: 5
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: variables with only lower bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: variables with lower and upper bounds: 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: variables with only upper bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Total number of equality constraints.................: 5
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Total number of inequality constraints...............: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: inequality constraints with only lower bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: inequality constraints with lower and upper bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: inequality constraints with only upper bounds: 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: iter objective inf_pr inf_du lg(mu) ||d|| lg(rg) alpha_du alpha_pr ls
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: 0 0.0000000e+00 5.66e-01 0.00e+00 -1.0 0.00e+00 - 0.00e+00 0.00e+00 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: 1 0.0000000e+00 4.86e-17 2.21e-07 -1.0 5.66e+06 - 9.90e-01 1.00e+00h 1
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of Iterations....: 1
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: (scaled) (unscaled)
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Objective...............: 0.0000000000000000e+00 0.0000000000000000e+00
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Dual infeasibility......: 0.0000000000000000e+00 0.0000000000000000e+00
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Constraint violation....: 4.8572257327350599e-17 4.8572257327350599e-17
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Complementarity.........: 0.0000000000000000e+00 0.0000000000000000e+00
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Overall NLP error.......: 4.8572257327350599e-17 4.8572257327350599e-17
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of objective function evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of objective gradient evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of equality constraint evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of inequality constraint evaluations = 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of equality constraint Jacobian evaluations = 2
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of inequality constraint Jacobian evaluations = 0
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Number of Lagrangian Hessian evaluations = 1
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Total CPU secs in IPOPT (w/o function evaluations) = 0.006
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: Total CPU secs in NLP function evaluations = 0.000
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump:
2023-03-04 01:41:57 [DEBUG] idaes.solve.fs.fwh1_pump: EXIT: Optimal Solution Found.
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh1_return: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.desuperheat.hot_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.desuperheat.cold_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.desuperheat: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.drain_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:57 [WARNING] idaes.init.fs.fwh2: The steam sat. temperature (335.2272258893377) is near the feedwater inlet temperature (318.02261253782945)
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.condense.hot_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.condense.cold_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.condense: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.condense: Initialization Complete (w/ extraction calc): optimal - Optimal Solution Found
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.cooling.hot_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.cooling.cold_side: Initialization Complete
2023-03-04 01:41:57 [INFO] idaes.init.fs.fwh2.cooling: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh2: Condensing hot side inlet delta T = 12.731240077392263
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh2: Condensing hot side outlet delta T = 17.002372103620363
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh2: Steam Flow = 217.13965467971224
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh2: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.desuperheat.hot_side: Initialization Complete
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.desuperheat.cold_side: Initialization Complete
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.desuperheat: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.drain_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:58 [WARNING] idaes.init.fs.fwh3: The steam sat. temperature (347.7738554943195) is near the feedwater inlet temperature (323.0365508389505)
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.condense.hot_side: Initialization Complete
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.condense.cold_side: Initialization Complete
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.condense: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.condense: Initialization Complete (w/ extraction calc): optimal - Optimal Solution Found
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.cooling.hot_side: Initialization Complete
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.cooling.cold_side: Initialization Complete
2023-03-04 01:41:58 [INFO] idaes.init.fs.fwh3.cooling: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh3: Condensing hot side inlet delta T = 20.20691202099028
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh3: Condensing hot side outlet delta T = 24.5035955629317
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh3: Steam Flow = 217.4462771553663
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh3: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.desuperheat.hot_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.desuperheat.cold_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.desuperheat: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.condense.hot_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.condense.cold_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.condense: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.condense: Initialization Complete (w/ extraction calc): optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.cooling.hot_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.cooling.cold_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4.cooling: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4: Condensing hot side inlet delta T = 39.43016001678676
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4: Condensing hot side outlet delta T = 47.808053621773
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4: Steam Flow = 247.42787053675028
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh4: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh5_da: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh6.desuperheat.hot_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh6.desuperheat.cold_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh6.desuperheat: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh6.drain_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh6.condense.hot_side: Initialization Complete
2023-03-04 01:41:59 [INFO] idaes.init.fs.fwh6.condense.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6.condense: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6.condense: Initialization Complete (w/ extraction calc): optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6.cooling.hot_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6.cooling.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6.cooling: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6: Condensing hot side inlet delta T = 45.08557769760507
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6: Condensing hot side outlet delta T = 72.43686375396946
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6: Steam Flow = 2128.5569356293245
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh6: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.desuperheat.hot_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.desuperheat.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.desuperheat: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.drain_mix: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.condense.hot_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.condense.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.condense: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.condense: Initialization Complete (w/ extraction calc): optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.cooling.hot_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.cooling.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7.cooling: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7: Condensing hot side inlet delta T = 72.40778629495206
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7: Condensing hot side outlet delta T = 98.78550984875073
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7: Steam Flow = 3749.068025531601
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh7: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.desuperheat.hot_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.desuperheat.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.desuperheat: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.condense.hot_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.condense.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.condense: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.condense: Initialization Complete (w/ extraction calc): optimal - Optimal Solution Found
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.cooling.hot_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.cooling.cold_side: Initialization Complete
2023-03-04 01:42:00 [INFO] idaes.init.fs.fwh8.cooling: Initialization Completed, optimal - Optimal Solution Found
2023-03-04 01:42:01 [INFO] idaes.init.fs.fwh8: Condensing hot side inlet delta T = 99.32852730881078
2023-03-04 01:42:01 [INFO] idaes.init.fs.fwh8: Condensing hot side outlet delta T = 108.51918961634314
2023-03-04 01:42:01 [INFO] idaes.init.fs.fwh8: Steam Flow = 1487.8775467640523
2023-03-04 01:42:01 [INFO] idaes.init.fs.fwh8: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:42:03 [INFO] idaes.init.Steam Cycle Model: Initialization Complete: optimal - Optimal Solution Found
WARNING: model contains export suffix
'fs.fwh8.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.bfpt.control_volume.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfpt.control_volume.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfp.control_volume.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfp.control_volume.properties_in[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.mixed_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.feedwater_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.drain_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.steam_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.fwh1_drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.feedwater_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.scaling_factor' that contains 1 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.scaling_factor' that contains 1 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.mixed_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.makeup_state[0.0].scaling_factor' that contains 65 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.condensate_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.cold_side.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.cold_side.properties_in[0.0].scaling_factor' that contains
66 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.hot_side.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.hot_side.properties_in[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix 'fs.condenser.scaling_factor' that
contains 2 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.bfpt_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.main_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.outlet_stage.control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.outlet_stage.control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[11].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[11].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[10].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[10].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[9].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[9].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[8].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[8].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[10].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[10].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[9].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[9].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[8].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[8].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_4_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[4].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[4].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[3].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[3].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[2].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[2].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[1].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[1].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_4_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.mixed_state[0.0].scaling_factor' that contains 65
component keys that are not exported as part of the NL file. Skipping.
Ipopt 3.13.2: nlp_scaling_method=gradient-based
tol=1e-06
max_iter=200
******************************************************************************
This program contains Ipopt, a library for large-scale nonlinear optimization.
Ipopt is released as open source code under the Eclipse Public License (EPL).
For more information visit http://projects.coin-or.org/Ipopt
This version of Ipopt was compiled from source code available at
https://github.com/IDAES/Ipopt as part of the Institute for the Design of
Advanced Energy Systems Process Systems Engineering Framework (IDAES PSE
Framework) Copyright (c) 2018-2019. See https://github.com/IDAES/idaes-pse.
This version of Ipopt was compiled using HSL, a collection of Fortran codes
for large-scale scientific computation. All technical papers, sales and
publicity material resulting from use of the HSL codes within IPOPT must
contain the following acknowledgement:
HSL, a collection of Fortran codes for large-scale scientific
computation. See http://www.hsl.rl.ac.uk.
******************************************************************************
This is Ipopt version 3.13.2, running with linear solver ma27.
Number of nonzeros in equality constraint Jacobian...: 2341
Number of nonzeros in inequality constraint Jacobian.: 0
Number of nonzeros in Lagrangian Hessian.............: 1021
Total number of variables............................: 858
variables with only lower bounds: 0
variables with lower and upper bounds: 444
variables with only upper bounds: 0
Total number of equality constraints.................: 858
Total number of inequality constraints...............: 0
inequality constraints with only lower bounds: 0
inequality constraints with lower and upper bounds: 0
inequality constraints with only upper bounds: 0
iter objective inf_pr inf_du lg(mu) ||d|| lg(rg) alpha_du alpha_pr ls
0 0.0000000e+00 1.86e-09 0.00e+00 -1.0 0.00e+00 - 0.00e+00 0.00e+00 0
Number of Iterations....: 0
(scaled) (unscaled)
Objective...............: 0.0000000000000000e+00 0.0000000000000000e+00
Dual infeasibility......: 0.0000000000000000e+00 0.0000000000000000e+00
Constraint violation....: 1.5188561519607902e-10 1.8626451492309570e-09
Complementarity.........: 0.0000000000000000e+00 0.0000000000000000e+00
Overall NLP error.......: 1.5188561519607902e-10 1.8626451492309570e-09
Number of objective function evaluations = 1
Number of objective gradient evaluations = 1
Number of equality constraint evaluations = 1
Number of inequality constraint evaluations = 0
Number of equality constraint Jacobian evaluations = 1
Number of inequality constraint Jacobian evaluations = 0
Number of Lagrangian Hessian evaluations = 0
Total CPU secs in IPOPT (w/o function evaluations) = 0.272
Total CPU secs in NLP function evaluations = 0.000
EXIT: Optimal Solution Found.
0
57072.5254836037
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON.cold_side: Initialization Complete
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON.hot_side.properties_in: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON.hot_side.properties_out: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON.hot_side.properties_out: fs.ECON.hot_side.properties_out State Released.
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON.hot_side: Initialization Complete
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON: fs.ECON Initialisation Step 1 Complete.
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON.hot_side.properties_in: fs.ECON.hot_side.properties_in State Released.
2023-03-04 01:42:04 [INFO] idaes.init.fs.ECON: fs.ECON Initialisation Complete.
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH.cold_side: Initialization Complete
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH.hot_side.properties_in: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH.hot_side.properties_out: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH.hot_side.properties_out: fs.PrSH.hot_side.properties_out State Released.
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH.hot_side: Initialization Complete
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH: fs.PrSH Initialisation Step 1 Complete.
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH.hot_side.properties_in: fs.PrSH.hot_side.properties_in State Released.
2023-03-04 01:42:04 [INFO] idaes.init.fs.PrSH: fs.PrSH Initialisation Complete.
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH.cold_side: Initialization Complete
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH.hot_side.properties_in: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH.hot_side.properties_out: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH.hot_side.properties_out: fs.FSH.hot_side.properties_out State Released.
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH.hot_side: Initialization Complete
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH: fs.FSH Initialisation Step 1 Complete.
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH.hot_side.properties_in: fs.FSH.hot_side.properties_in State Released.
2023-03-04 01:42:04 [INFO] idaes.init.fs.FSH: fs.FSH Initialisation Complete.
2023-03-04 01:42:04 [INFO] idaes.init.fs.RH.cold_side: Initialization Complete
2023-03-04 01:42:04 [INFO] idaes.init.fs.RH.hot_side.properties_in: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:05 [INFO] idaes.init.fs.RH.hot_side.properties_out: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:05 [INFO] idaes.init.fs.RH.hot_side.properties_out: fs.RH.hot_side.properties_out State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.RH.hot_side: Initialization Complete
2023-03-04 01:42:05 [INFO] idaes.init.fs.RH: fs.RH Initialisation Step 1 Complete.
2023-03-04 01:42:05 [INFO] idaes.init.fs.RH.hot_side.properties_in: fs.RH.hot_side.properties_in State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.RH: fs.RH Initialisation Complete.
2023-03-04 01:42:05 [INFO] idaes.init.fs.PlSH.control_volume: Initialization Complete
2023-03-04 01:42:05 [INFO] idaes.init.fs.PlSH: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:42:05 [INFO] idaes.init.fs.Water_wall.control_volume: Initialization Complete
2023-03-04 01:42:05 [INFO] idaes.init.fs.Water_wall: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:42:05 [INFO] idaes.init.fs.Spl1.mixed_state: Initialisation Complete, skipped.
2023-03-04 01:42:05 [INFO] idaes.init.fs.Spl1.outlet_1_state: Initialisation Complete, skipped.
2023-03-04 01:42:05 [INFO] idaes.init.fs.Spl1.outlet_1_state: fs.Spl1.outlet_1_state State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.Spl1.outlet_2_state: Initialisation Complete, skipped.
2023-03-04 01:42:05 [INFO] idaes.init.fs.Spl1.outlet_2_state: fs.Spl1.outlet_2_state State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.Spl1: Initialization Step 2 Complete: optimal - Optimal Solution Found
2023-03-04 01:42:05 [INFO] idaes.init.fs.Spl1.mixed_state: fs.Spl1.mixed_state State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.mix1.Reheat_out_state: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:05 [INFO] idaes.init.fs.mix1.PrSH_out_state: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:05 [INFO] idaes.init.fs.mix1.mixed_state: Initialisation Complete, optimal - Optimal Solution Found.
2023-03-04 01:42:05 [INFO] idaes.init.fs.mix1.mixed_state: fs.mix1.mixed_state State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.mix1: Initialization Complete: optimal - Optimal Solution Found
2023-03-04 01:42:05 [INFO] idaes.init.fs.mix1.Reheat_out_state: fs.mix1.Reheat_out_state State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.mix1.PrSH_out_state: fs.mix1.PrSH_out_state State Released.
2023-03-04 01:42:05 [INFO] idaes.init.fs.ATMP1: Initialization Complete: optimal - Optimal Solution Found
initialization done
solving square problem disconnected
WARNING: model contains export suffix
'fs.fwh8.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.bfpt.control_volume.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfpt.control_volume.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfp.control_volume.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfp.control_volume.properties_in[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.mixed_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.feedwater_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.drain_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.steam_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.fwh1_drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.feedwater_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.scaling_factor' that contains 1 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.scaling_factor' that contains 1 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.mixed_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.makeup_state[0.0].scaling_factor' that contains 65 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.condensate_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.cold_side.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.cold_side.properties_in[0.0].scaling_factor' that contains
66 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.hot_side.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.hot_side.properties_in[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix 'fs.condenser.scaling_factor' that
contains 2 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.bfpt_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.main_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.outlet_stage.control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.outlet_stage.control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[11].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[11].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[10].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[10].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[9].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[9].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[8].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[8].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[10].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[10].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[9].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[9].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[8].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[8].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_4_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[4].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[4].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[3].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[3].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[2].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[2].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[1].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[1].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_4_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.mixed_state[0.0].scaling_factor' that contains 65
component keys that are not exported as part of the NL file. Skipping.
Ipopt 3.13.2: nlp_scaling_method=gradient-based
tol=1e-06
max_iter=200
******************************************************************************
This program contains Ipopt, a library for large-scale nonlinear optimization.
Ipopt is released as open source code under the Eclipse Public License (EPL).
For more information visit http://projects.coin-or.org/Ipopt
This version of Ipopt was compiled from source code available at
https://github.com/IDAES/Ipopt as part of the Institute for the Design of
Advanced Energy Systems Process Systems Engineering Framework (IDAES PSE
Framework) Copyright (c) 2018-2019. See https://github.com/IDAES/idaes-pse.
This version of Ipopt was compiled using HSL, a collection of Fortran codes
for large-scale scientific computation. All technical papers, sales and
publicity material resulting from use of the HSL codes within IPOPT must
contain the following acknowledgement:
HSL, a collection of Fortran codes for large-scale scientific
computation. See http://www.hsl.rl.ac.uk.
******************************************************************************
This is Ipopt version 3.13.2, running with linear solver ma27.
Number of nonzeros in equality constraint Jacobian...: 3045
Number of nonzeros in inequality constraint Jacobian.: 0
Number of nonzeros in Lagrangian Hessian.............: 1592
Exception of type: TOO_FEW_DOF in file "IpIpoptApplication.cpp" at line 926:
Exception message: status != TOO_FEW_DEGREES_OF_FREEDOM evaluated false: Too few degrees of freedom (rethrown)!
EXIT: Problem has too few degrees of freedom.
WARNING: Loading a SolverResults object with a warning status into
model.name="Steam Cycle Model";
- termination condition: other
- message from solver: Too few degrees of freedom (rethrown)!
unfix inlet conditions, degreeso of freedom = 0
connecting flowsheets, degrees of freedom = 0
solving full plant model
WARNING: model contains export suffix
'fs.fwh8.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh8.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh7.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh6.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.bfpt.control_volume.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfpt.control_volume.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfp.control_volume.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.bfp.control_volume.properties_in[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.mixed_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.feedwater_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.drain_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh5_da.steam_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh4.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh3.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.cooling.hot_side.properties_in[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.desuperheat.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh2.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.fwh1_drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_return.feedwater_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1_pump.control_volume.scaling_factor' that contains 1 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.drain_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.drain_mix.steam_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.cold_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.cold_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.hot_side.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.fwh1.condense.hot_side.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.properties_out[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.properties_in[0.0].scaling_factor' that
contains 63 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.cond_pump.control_volume.scaling_factor' that contains 1 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.mixed_state[0.0].scaling_factor' that contains 63 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.makeup_state[0.0].scaling_factor' that contains 65 component
keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.hotwell.condensate_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.cold_side.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.cold_side.properties_in[0.0].scaling_factor' that contains
66 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.hot_side.properties_out[0.0].scaling_factor' that contains
63 component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser.hot_side.properties_in[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix 'fs.condenser.scaling_factor' that
contains 2 component keys that are not exported as part of the NL file.
Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.bfpt_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.condenser_mix.main_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[11].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[10].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[8].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_split[4].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[10].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_split[5].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[7].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_split[4].mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.outlet_stage.control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.outlet_stage.control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[11].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[11].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[10].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[10].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[9].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[9].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[8].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[8].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.lp_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[10].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[10].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[9].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[9].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[8].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[8].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.ip_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[7].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[7].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[6].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[6].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[5].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[5].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.hp_stages[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.mixed_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_4_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_mix.inlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[4].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[4].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[3].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[3].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[2].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[2].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[1].control_volume.properties_out[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_stage[1].control_volume.properties_in[0.0].scaling_factor'
that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[4].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[4].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[3].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[3].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[2].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[2].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[1].control_volume.properties_out[0.0].scaling_fact
or' that contains 63 component keys that are not exported as part of the
NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.throttle_valve[1].control_volume.properties_in[0.0].scaling_facto
r' that contains 63 component keys that are not exported as part of the NL
file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_4_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_3_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_2_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.outlet_1_state[0.0].scaling_factor' that contains 63
component keys that are not exported as part of the NL file. Skipping.
WARNING: model contains export suffix
'fs.turb.inlet_split.mixed_state[0.0].scaling_factor' that contains 64
component keys that are not exported as part of the NL file. Skipping.
Ipopt 3.13.2: tol=1e-06
linear_solver=ma27
max_iter=40
******************************************************************************
This program contains Ipopt, a library for large-scale nonlinear optimization.
Ipopt is released as open source code under the Eclipse Public License (EPL).
For more information visit http://projects.coin-or.org/Ipopt
This version of Ipopt was compiled from source code available at
https://github.com/IDAES/Ipopt as part of the Institute for the Design of
Advanced Energy Systems Process Systems Engineering Framework (IDAES PSE
Framework) Copyright (c) 2018-2019. See https://github.com/IDAES/idaes-pse.
This version of Ipopt was compiled using HSL, a collection of Fortran codes
for large-scale scientific computation. All technical papers, sales and
publicity material resulting from use of the HSL codes within IPOPT must
contain the following acknowledgement:
HSL, a collection of Fortran codes for large-scale scientific
computation. See http://www.hsl.rl.ac.uk.
******************************************************************************
This is Ipopt version 3.13.2, running with linear solver ma27.
Number of nonzeros in equality constraint Jacobian...: 3579
Number of nonzeros in inequality constraint Jacobian.: 0
Number of nonzeros in Lagrangian Hessian.............: 2246
Total number of variables............................: 1195
variables with only lower bounds: 0
variables with lower and upper bounds: 0
variables with only upper bounds: 0
Total number of equality constraints.................: 1195
Total number of inequality constraints...............: 0
inequality constraints with only lower bounds: 0
inequality constraints with lower and upper bounds: 0
inequality constraints with only upper bounds: 0
iter objective inf_pr inf_du lg(mu) ||d|| lg(rg) alpha_du alpha_pr ls
0 0.0000000e+00 8.59e+06 0.00e+00 -1.0 0.00e+00 - 0.00e+00 0.00e+00 0
1 0.0000000e+00 5.95e+06 0.00e+00 -1.0 8.21e+07 - 1.00e+00 1.00e+00h 1
2 0.0000000e+00 9.94e+04 0.00e+00 -1.0 4.31e+06 - 1.00e+00 1.00e+00h 1
3 0.0000000e+00 7.64e+01 0.00e+00 -1.0 1.34e+05 - 1.00e+00 1.00e+00h 1
4 0.0000000e+00 3.92e-05 0.00e+00 -3.8 1.81e+01 - 1.00e+00 1.00e+00h 1
Cannot recompute multipliers for feasibility problem. Error in eq_mult_calculator
Number of Iterations....: 4
(scaled) (unscaled)
Objective...............: 0.0000000000000000e+00 0.0000000000000000e+00
Dual infeasibility......: 0.0000000000000000e+00 0.0000000000000000e+00
Constraint violation....: 2.4447217583656311e-09 3.9175152778625488e-05
Complementarity.........: 0.0000000000000000e+00 0.0000000000000000e+00
Overall NLP error.......: 2.4447217583656311e-09 3.9175152778625488e-05
Number of objective function evaluations = 5
Number of objective gradient evaluations = 5
Number of equality constraint evaluations = 5
Number of inequality constraint evaluations = 0
Number of equality constraint Jacobian evaluations = 5
Number of inequality constraint Jacobian evaluations = 0
Number of Lagrangian Hessian evaluations = 4
Total CPU secs in IPOPT (w/o function evaluations) = 0.309
Total CPU secs in NLP function evaluations = 1.024
EXIT: Optimal Solution Found.
5. Creating a PFD with results and a stream table¶
The steam cycle results can be displayed on the PFD and as a stream table, by running the following cells.
import pkg_resources
import pyomo.environ as pyo
from idaes.models_extra.power_generation.flowsheets.supercritical_steam_cycle import (
pfd_result,
)
from idaes.core.util.tables import create_stream_table_dataframe
# Create stream results as Pandas dataframe
df = create_stream_table_dataframe(streams=m._streams, orient="index")
# Create a new PFD with simulation results
init_pfd = pkg_resources.resource_string(
"idaes.models_extra.power_generation.flowsheets.supercritical_steam_cycle",
"supercritical_steam_cycle.svg"
)
res_pfd = pfd_result(m, df, svg=init_pfd)
# Display PFD with results.
display(SVG(res_pfd))
# Display the stream table.
df
| Molar Flow | Mass Flow | T | P | Vapor Fraction | Molar Enthalpy | |
|---|---|---|---|---|---|---|
| Units | mole / second | kilogram / second | kelvin | pascal | dimensionless | joule / mole |
| COND_01 | 17282.457727 | 311.348108 | 301.57998 | 3878.883621 | 0.0 | 2146.889355 |
| COND_02 | 17282.456727 | 311.34809 | 301.579979 | 3878.883621 | 0.0 | 2146.889335 |
| COND_03 | 17282.456727 | 311.34809 | 301.661034 | 1003878.883621 | 0.0 | 2169.492282 |
| CW01 | 2500000 | 45038.17 | 295.536861 | 500000 | 0.0 | 1700 |
| CW02 | 2500000.0 | 45038.17 | 299.435143 | 500000.0 | 0.0 | 1993.58828 |
| EXHST_BFPT | 1546.839163 | 27.866722 | 301.57998 | 3878.883621 | 0.995438 | 45787.761816 |
| EXHST_MAIN | 15735.618564 | 283.481386 | 301.57998 | 3878.883621 | 0.966083 | 44500.819463 |
| EXTR_BFPT_A | 1546.839163 | 27.866722 | 543.609663 | 338388.754504 | 1.0 | 54195.506149 |
| EXTR_HP4 | 1862.000213 | 33.544433 | 697.961824 | 8629990.590293 | 1.0 | 57580.164959 |
| EXTR_HP7 | 1286.074067 | 23.168969 | 604.32686 | 4418555.18223 | 1.0 | 54662.949171 |
| EXTR_IP10 | 859.692736 | 15.487595 | 543.609663 | 338388.754504 | 1.0 | 54195.506149 |
| EXTR_IP5 | 807.134566 | 14.540746 | 702.027096 | 1172041.281103 | 1.0 | 59876.382643 |
| EXTR_LP10 | 144.712591 | 2.607036 | 335.037194 | 21754.637187 | 0.969924 | 45783.011066 |
| EXTR_LP11 | 403.947012 | 7.277214 | 329.150802 | 16533.524262 | 0.959114 | 45129.257933 |
| EXTR_LP4 | 273.642894 | 4.92975 | 430.325749 | 112893.851842 | 1.0 | 50261.690036 |
| EXTR_LP8 | 139.830066 | 2.519076 | 347.567134 | 37663.845545 | 0.992885 | 47147.648625 |
| FW01A | 17282.456727 | 311.34809 | 314.290823 | 1003878.883621 | 0.0 | 3119.910062 |
| FW01B | 18244.58929 | 328.681166 | 315.08341 | 1003878.883621 | 0.0 | 3179.557668 |
| FW02 | 18244.58929 | 328.681166 | 319.712379 | 1003878.883621 | 0.0 | 3527.958819 |
| FW03 | 18244.58929 | 328.681166 | 324.210603 | 1003878.883621 | 0.0 | 3866.606427 |
| FW04 | 18244.58929 | 328.681166 | 333.0717 | 1003878.883621 | 0.0 | 4534.065398 |
| FW05A | 23059.490872 | 415.422908 | 377.816254 | 1003878.883621 | 0.0 | 7918.049162 |
| FW05B | 23059.490872 | 415.422908 | 381.030383 | 25055327.666477 | 0.0 | 8482.043757 |
| FW06 | 23059.490872 | 415.422908 | 412.678059 | 25055327.666477 | 0.0 | 10871.367426 |
| FW07 | 23059.490872 | 415.422908 | 442.071654 | 25055327.666477 | 0.0 | 13119.101005 |
| FW08 | 23059.490872 | 415.422908 | 478.527787 | 25055327.666477 | 0.0 | 15965.758008 |
| FWH1_DRN1 | 962.132563 | 17.333076 | 329.150802 | 16533.524262 | 0.0 | 4223.564367 |
| FWH1_DRN2 | 962.132563 | 17.333076 | 329.271324 | 1216533.524262 | 0.0 | 4250.987135 |
| FWH2_DRN | 558.185551 | 10.055862 | 326.815741 | 21754.637187 | 0.0 | 4047.675664 |
| FWH3_DRN | 413.47296 | 7.448826 | 336.976177 | 37663.845545 | 0.0 | 4813.886337 |
| FWH4_DRN | 273.642894 | 4.92975 | 349.497368 | 112893.851842 | 0.0 | 5760.206347 |
| FWH6_DRN | 3955.208846 | 71.254147 | 449.625506 | 1172041.281103 | 0.0 | 13468.957137 |
| FWH7_DRN | 3148.07428 | 56.713402 | 517.546198 | 4418555.18223 | 0.0 | 19072.239817 |
| FWH8_DRN | 1862.000213 | 33.544433 | 553.839299 | 8629990.590293 | 0.0 | 22326.430431 |
| MAKEUP_01 | -0.001 | -0.000018 | 306.248085 | 101325 | 0.0 | 2500 |
| RHT_COLD | 19911.417592 | 358.709524 | 604.32686 | 4418555.18223 | 1.0 | 54662.949171 |
| RHT_HOT | 19911.417592 | 358.709524 | 896.034085 | 4059475.222879 | 1.0 | 67143.805231 |
| STEAM_LP | 16697.751126 | 300.814462 | 543.609663 | 338388.754504 | 1.0 | 54195.506149 |
| STEAM_MAIN | 23059.491872 | 415.422926 | 866.481887 | 24230000.0 | 0.0 | 62710.01 |
| THRTL1 | 5764.872968 | 103.855732 | 863.036551 | 23161161.489529 | 0.0 | 62710.01 |
| THRTL2 | 5764.872968 | 103.855732 | 863.036551 | 23161161.489529 | 0.0 | 62710.01 |
| THRTL3 | 5764.872968 | 103.855732 | 863.036551 | 23161161.489529 | 0.0 | 62710.01 |
| THRTL4 | 5764.872968 | 103.855732 | 863.036551 | 23161161.489529 | 0.0 | 62710.01 |
| condenser_mix_to_condenser | 17282.457727 | 311.348108 | 301.57998 | 3878.883621 | 0.968711 | 44616.005212 |