Skip to content

Commit

Permalink
Updaing docs and doc strings
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewlee94 committed Jan 16, 2025
1 parent 05ee497 commit de153a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/reference_guides/core/control_volume_0d.rst
Original file line number Diff line number Diff line change
Expand Up @@ -307,6 +307,6 @@ A constraint equating temperature at the inlet and outlet of the control volume

**Constraints**

`enthalpy_balances(t)`:
`isothermal_constraint(t)`:

.. math:: T_{in, t} == T_{out, t}
2 changes: 1 addition & 1 deletion docs/reference_guides/core/control_volume_1d.rst
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ A constraint equating temperature along the length domain of the control volume

**Constraints**

`enthalpy_balances(t)`:
`isothermal_constraint(t, x)`:

.. math:: T_{t, x-1} == T_{t, x}

Expand Down
2 changes: 1 addition & 1 deletion idaes/core/base/extended_control_volume0d.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def add_isothermal_constraint(
Method should accept time and phase list as arguments.
Returns:
Constraint object representing enthalpy balances
Constraint object representing isothermal constraint
"""
if has_heat_transfer:
raise ConfigurationError(
Expand Down
2 changes: 1 addition & 1 deletion idaes/core/base/extended_control_volume1d.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def add_isothermal_constraint(
Method should accept time and phase list as arguments.
Returns:
Constraint object representing enthalpy balances
Constraint object representing isothermal constraints
"""
if has_heat_transfer:
raise ConfigurationError(
Expand Down

0 comments on commit de153a7

Please sign in to comment.