Implementing the Boiler Fire Side Model #536
-
I am a new user to IDAES and I am interested in learning how to setup a simple flowsheet with the "Boiler Fire Side Model" implemented. I have looked over the introduction information under the technical specifications link. Are there additional resources for learning more about how this model works and how one would set it up? Specifically, the required user provided surrogate dictionary. Also is there any technical description of this model other than the above link? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You might find more info by looking at the following notebook: https://github.com/IDAES/idaes-pse/blob/main/idaes/power_generation/flowsheets/subcritical_power_plant/subcritical_boiler.ipynb @MAZamarripa, might also be able to help more. |
Beta Was this translation helpful? Give feedback.
-
Hi, This model can be used in two ways, 1) user can provide fixed inputs for heat loss to the water wall; 2) user can provide a "surrogate model / correlation" to represent the heat loss to the water wall. Option 1: Example of the code being used for testing: Option 2: Example of a sub-critical coal fired boiler using the data dictionary (with surrogates): Example of a sub-critical coal fired power plant: Surrogate models have been developed using a boiler fire-side rigorous simulation (c++ code).
|
Beta Was this translation helpful? Give feedback.
Hi,
Here is the link to the documentation https://idaes-pse.readthedocs.io/en/stable/technical_specs/model_libraries/power_generation/unit_models/boiler_fireside.html
This model can be used in two ways, 1) user can provide fixed inputs for heat loss to the water wall; 2) user can provide a "surrogate model / correlation" to represent the heat loss to the water wall.
Option 1:
Example of the data dictionary:
https://github.com/IDAES/idaes-pse/blob/main/idaes/power_generation/unit_models/tests/datadictionary.py
Example of the code being used for testing:
https://github.com/IDAES/idaes-pse/blob/main/idaes/power_generation/unit_models/tests/test_boilerfireside.py
Option 2:
Example of data dic…