-
Notifications
You must be signed in to change notification settings - Fork 238
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding initial support for v2 solvers #1384
Closed
Closed
Changes from 18 commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
a36deb1
Adding initial support for v2 solvers
f515d80
Cleaning up and using isinstance ot detect legacy solver interface
38a9a94
Correcting solve config
d9287c2
Fixing leak of options
eb20e86
Fixing or skipping failing tests
7f5fe40
Fixing use of pytest skip
258e2c0
Fixing presolve issues in apps and core
532d23b
Switch Block to ConcreteModel in solve_indexed_blocks
mrmundt 923df9e
Resolve CI failures from new version (1.20.4) of spellchecker (#1389)
lbianchi-lbl 4e6a0f0
Fix target for 'fv' (flowsheet visualizer) reference (#1391)
dangunter f8ccdec
Updating black and rerunning it on all files (#1388)
ksbeattie 8c37ddf
Merge branch 'main' into scaling_v2
61c938e
Merge branch 'scaling_v2' of https://github.com/andrewlee94/idaes-pse…
c8f2f7c
Merge branch 'scaling_v2' of https://github.com/IDAES/idaes-pse into …
637b7fb
Cleaning up
075edf7
Updating Pyomo tag
4d73ced
Trying @jsiirola's branch fix
f312c00
Trying @jsiirola's branch fix again
c3a7010
Trying @jsiirola's branch fix again
b5ddcf8
Bumping Pyomo tag
40d3dc7
Fixing spurious DoF in Gibbs reactor model (#1393)
45c8ff0
Update parameter sweep tool to support indexed vars (#1387)
3a1d54a
Adding attributes to hold units used by MSContactor (#1396)
b3d55b7
Crossflow hx (#1382)
dallan-keylogic 5cf975f
bug fix: catch AttributeError in set_scaling_from_default (#1400)
jasonmbray-p66 2e89daf
Renaming Block classes
75b71e8
Fixing instances of _General
4424c53
Fixing other _Data classes
bc2f6c0
Add parallel constraint/variable check to `report_numerical_issues` (…
Robbybp 7eed1cc
Some clean up
6fe724a
Address many unexpected warnings in pytest (#1403)
3e0a27c
bumping Pyomo tag
5f685b2
Merge branch 'main' into renaming_components
2c43633
Merging main
50956cd
Fixing conflict
97d2f05
Renaming components (#1402)
5d2f94c
Update the Pyomo tag to the 6.7.2 release (#1406)
blnicho 8094e8d
Fixing conflict
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
323 changes: 323 additions & 0 deletions
323
...s/model_libraries/power_generation/unit_models/cross_flow_heat_exchanger_1D.rst
Large diffs are not rendered by default.
Oops, something went wrong.
276 changes: 276 additions & 0 deletions
276
docs/reference_guides/model_libraries/power_generation/unit_models/heater_1D.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,276 @@ | ||
Heater1D | ||
======== | ||
|
||
.. index:: | ||
pair: idaes.models_extra.power_generation.unit_models.heater_1D;Heater1D | ||
|
||
.. module:: idaes.models_extra.power_generation.unit_models.heater_1D | ||
|
||
This model is for a gas trim heater modeled as gas being blown perpendicularly across banks of hollow tubes, | ||
which are heated by resistive heating. Note that the ``finite_elements`` option in the control | ||
volume config should be set to an integer factor of ``number_passes`` in order for the | ||
discretization equations to make sense as a cross-flow heat exchanger. | ||
|
||
Example | ||
------- | ||
|
||
.. code-block:: python | ||
|
||
import pyomo.environ as pyo | ||
|
||
from idaes.core import FlowsheetBlock | ||
import idaes.core.util.scaling as iscale | ||
from idaes.models.properties.modular_properties import GenericParameterBlock | ||
from idaes.models_extra.power_generation.properties.natural_gas_PR import ( | ||
get_prop, | ||
EosType, | ||
) | ||
from idaes.models_extra.power_generation.unit_models import Heater1D | ||
from idaes.core.util.model_statistics import degrees_of_freedom | ||
|
||
optarg = { | ||
"constr_viol_tol": 1e-8, | ||
"nlp_scaling_method": "user-scaling", | ||
"linear_solver": "ma57", | ||
"OF_ma57_automatic_scaling": "yes", | ||
"max_iter": 350, | ||
"tol": 1e-8, | ||
"halt_on_ampl_error": "no", | ||
} | ||
|
||
m = pyo.ConcreteModel() | ||
m.fs = FlowsheetBlock(dynamic=False) | ||
m.fs.h2_side_prop_params = GenericParameterBlock( | ||
**get_prop(["H2", "H2O", "Ar", "N2"], {"Vap"}, eos=EosType.IDEAL), | ||
doc="H2O + H2 gas property parameters", | ||
) | ||
m.fs.heater = Heater1D( | ||
property_package=m.fs.h2_side_prop_params, | ||
has_holdup=True, | ||
dynamic=False, | ||
has_fluid_holdup=False, | ||
has_pressure_change=pressure_drop, | ||
finite_elements=4, | ||
tube_arrangement="in-line", | ||
transformation_method="dae.finite_difference", | ||
transformation_scheme="BACKWARD", | ||
) | ||
|
||
heater = m.fs.heater | ||
|
||
heater.inlet.flow_mol.fix(5102.5) | ||
heater.inlet.temperature.fix(938.83) | ||
heater.inlet.pressure.fix(1.2e5) | ||
heater.inlet.mole_frac_comp[0, "H2"].fix(0.57375) | ||
heater.inlet.mole_frac_comp[0, "H2O"].fix(0.42517) | ||
heater.inlet.mole_frac_comp[0, "Ar"].fix(0.00086358) | ||
heater.inlet.mole_frac_comp[0, "N2"].fix(0.00021589) | ||
|
||
heater.di_tube.fix(0.0525018) | ||
heater.thickness_tube.fix(0.0039116) | ||
heater.pitch_x.fix(0.1) | ||
heater.pitch_y.fix(0.1) | ||
heater.length_tube_seg.fix(10) | ||
heater.number_passes.fix(1) | ||
heater.rfouling = 0.0001 | ||
heater.fcorrection_htc_shell.fix(1) | ||
heater.cp_wall = 502.4 | ||
if pressure_drop: | ||
heater.fcorrection_dp_shell.fix(1) | ||
|
||
heater.number_columns_per_pass.fix(40) | ||
heater.number_rows_per_pass.fix(40) | ||
heater.electric_heat_duty.fix(3.6504e06) | ||
|
||
pp = m.fs.h2_side_prop_params | ||
pp.set_default_scaling("enth_mol_phase", 1e-3) | ||
pp.set_default_scaling("pressure", 1e-5) | ||
pp.set_default_scaling("temperature", 1e-2) | ||
pp.set_default_scaling("flow_mol", 1e-3) | ||
|
||
_mf_scale = { | ||
"H2": 1, | ||
"H2O": 1, | ||
"N2": 10, | ||
"Ar": 10, | ||
} | ||
for comp, s in _mf_scale.items(): | ||
pp.set_default_scaling("mole_frac_comp", s, index=comp) | ||
pp.set_default_scaling("mole_frac_phase_comp", s, index=("Vap", comp)) | ||
pp.set_default_scaling("flow_mol_phase_comp", s * 1e-3, index=("Vap", comp)) | ||
|
||
shell = heater.control_volume | ||
iscale.set_scaling_factor(shell.area, 1e-1) | ||
iscale.set_scaling_factor(shell.heat, 1e-6) | ||
iscale.set_scaling_factor(shell.enthalpy_flow_dx, 1e-7) | ||
iscale.set_scaling_factor(heater.heat_holdup, 1e-8) | ||
|
||
iscale.calculate_scaling_factors(m) | ||
|
||
initializer = m.fs.heat_exchanger.default_initializer( | ||
solver="ipopt", | ||
solver_options=optarg | ||
) | ||
initializer.initialize(m.fs.heat_exchanger) | ||
|
||
|
||
|
||
|
||
Heater Geometry | ||
--------------- | ||
=========================== =========== ============================================================================================= | ||
Variable Index Sets Doc | ||
=========================== =========== ============================================================================================= | ||
``number_columns_per_pass`` None Number of columns of tube per pass | ||
``number_rows_per_pass`` None Number of rows of tube per pass | ||
``number_passes`` None Number of tube banks of ``nrow_tube * ncol_inlet`` tubes | ||
``pitch_x`` None Distance between tubes parallel to flow, measured from center-of-tube to center-of-tube | ||
``pitch_y`` None Distance between tubes perpendicular to flow, measured from center-of-tube to center-of-tube | ||
``length_tube_seg`` None Length of tube segment perpendicular to flow in each pass | ||
``area_flow_shell`` None Reference to flow area on control volume | ||
``length_flow_shell`` None Reference to flow length on control volume | ||
``area_flow_shell_min`` None Minimum flow area on shell side | ||
``di_tube`` None Inner diameter of tubes | ||
``thickness_tube`` None Thickness of tube wall. | ||
=========================== =========== ============================================================================================= | ||
|
||
============================ =========== =========================================================================== | ||
Expression Index Sets Doc | ||
============================ =========== =========================================================================== | ||
``nrow_tube`` None Total number of rows of tube | ||
``do_tube`` None Outer diameter of tube (equal to ``di_tube+2*thickness_tube``) | ||
``pitch_x_to_do`` None Ratio of ``pitch_x`` to ``do_tube`` | ||
``pitch_y_to_do`` None Ratio of ``pitch_y`` to ``do_tube`` | ||
``area_wall_seg`` None Total cross-sectional area of tube per pass | ||
``total_heat_transfer_area`` None Total heat transfer area, as measured on outer surface of tubes | ||
============================ =========== =========================================================================== | ||
|
||
=========================== =========== ================================================================================================= | ||
Constraint Index Sets Doc | ||
=========================== =========== ================================================================================================= | ||
``length_flow_shell_eqn`` None Constrains flow length from control volume to equal value implied by geometry | ||
``area_flow_shell_eqn`` None Constrains flow cross-sectional area from control volume to equal value implied by geometry | ||
``area_flow_shell_min_eqn`` None Constraints ``area_flow_shell_min`` to equal value determined by geometry | ||
=========================== =========== ================================================================================================= | ||
|
||
Performance Equations | ||
----------------------- | ||
|
||
================================== ============ ================================================================================= | ||
Variable Index Sets Doc | ||
================================== ============ ================================================================================= | ||
``electric_heat_duty`` time Electric heat duty supplied to entire heater unit | ||
``fcorrection_htc_shell`` time, length Correction factor for convective heat transfer | ||
``conv_heat_transfer_coeff_shell`` time, length Convective heat transfer coefficient | ||
``temp_wall_shell`` time, length Wall temperature of tube | ||
``temp_wall_center`` time, length Temperature at center of tube wall | ||
``v_shell`` time, length Flow velocity through minimum area | ||
``N_Re_shell`` time, length Reynolds number | ||
``N_Nu_shell`` time, length Nusselt number | ||
================================== ============ ================================================================================= | ||
|
||
=========================== =========== ================================================================================= | ||
Parameter Index Sets Doc | ||
=========================== =========== ================================================================================= | ||
``therm_cond_wall`` None Thermal conductivity of tube wall | ||
``density_wall`` None Mass density of tube wall metal | ||
``cp_wall`` None Tube wall heat capacity (mass basis) | ||
``rfouling_shell`` None Fouling resistance on shell side | ||
``f_arrangement`` None Adjustment factor depending on ``tube_arrangement`` in config | ||
=========================== =========== ================================================================================= | ||
|
||
====================================== ============ ================================================================================= | ||
Constraint Index Sets Doc | ||
====================================== ============ ================================================================================= | ||
``v_shell_eqn`` time, length Calculates velocity of flow through shell using ``area_flow_shell_min`` | ||
``N_Re_shell_eqn`` time, length Calculates the Reynolds number | ||
``conv_heat_transfer_coeff_shell_eqn`` time, length Calculates the convective heat transfer coefficient | ||
``N_Nu_shell_eqn`` time, length Calculate the Nusselt number | ||
``heat_shell_eqn`` time, length Calculates heat transfer per unit length | ||
``temp_wall_shell_eqn`` time, length Calculate the wall temperature of the outer tube | ||
``temp_wall_center_eqn`` time, length Overall energy balance on tube metal | ||
====================================== ============ ================================================================================= | ||
|
||
====================================== ============ =================================================================================== | ||
Expression Index Sets Doc | ||
====================================== ============ =================================================================================== | ||
``total_heat_transfer_coeff_shell`` time Returns ``conv_heat_transfer_coeff_shell``. Could be extended to include radiation. | ||
====================================== ============ =================================================================================== | ||
|
||
Pressure Change Equations | ||
------------------------- | ||
|
||
=========================== ============ ================================================================================= | ||
Parameter Index Sets Doc | ||
=========================== ============ ================================================================================= | ||
``fcorrection_dp_shell`` None Correction factor for pressure drop | ||
=========================== ============ ================================================================================= | ||
|
||
=========================== ============ ================================================================================= | ||
Variable Index Sets Doc | ||
=========================== ============ ================================================================================= | ||
``fcorrection_dp_shell`` None Correction factor for pressure drop | ||
``friction_factor_shell`` time, length Friction factor | ||
=========================== ============ ================================================================================= | ||
|
||
================================== ============ ================================================================================= | ||
Constraint Index Sets Doc | ||
================================== ============ ================================================================================= | ||
``friction_factor_shell_eqn`` time, length Calculates the friction factor | ||
``deltaP_shell_eqn`` time, length Sets ``deltaP_shell`` based on the friction factor and physical properties | ||
================================== ============ ================================================================================= | ||
|
||
|
||
Holdup Equations | ||
---------------- | ||
|
||
Created when ``has_holdup=True`` in the config. | ||
|
||
=========================== ============ ================================================================================= | ||
Variable Index Sets Doc | ||
=========================== ============ ================================================================================= | ||
``heat_holdup`` time, length Energy holdup per unit length of flow path | ||
=========================== ============ ================================================================================= | ||
|
||
=========================== ============ ================================================================================= | ||
Constraint Index Sets Doc | ||
=========================== ============ ================================================================================= | ||
``heat_holdup_eqn`` time, length Defines heat holdup in terms of geometry and physical properties | ||
=========================== ============ ================================================================================= | ||
|
||
Dynamic Equations | ||
----------------- | ||
|
||
Created when ``dynamic=True`` in the config. | ||
|
||
=========================== ============ ================================================================================= | ||
Derivative Variable Index Sets Doc | ||
=========================== ============ ================================================================================= | ||
``heat_accumulation`` time, length Energy accumulation in tube wall per unit length of shell flow path per unit time | ||
=========================== ============ ================================================================================= | ||
|
||
|
||
Initialization | ||
-------------- | ||
|
||
A simple initialization method that first initializes the control volume without heat transfer, | ||
then adds heat transfer in and solves it again, then finally solves the entire model. | ||
|
||
|
||
Heater1D Class | ||
-------------- | ||
|
||
.. autoclass:: Heater1D | ||
:members: | ||
|
||
Heater1DData Class | ||
------------------ | ||
|
||
.. autoclass:: Heater1DData | ||
:members: | ||
|
||
Heater1DInitializer Class | ||
------------------------- | ||
|
||
.. autoclass:: Heater1DInitializer | ||
:members: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume these are all unused imports being removed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes - I generally clean these up as I find them.