Skip to content

Commit

Permalink
Move saturation index
Browse files Browse the repository at this point in the history
  • Loading branch information
John Eslick committed Jul 27, 2023
1 parent 9c8b9c6 commit de5fade
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions idaes/core/base/property_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -969,11 +969,6 @@ class StandardPropertySet(PropertySetBase):
doc="Reaction Rate",
units=pyunits.dimensionless,
)
saturation_index = PropertyMetadata(
name="saturation_index",
doc="Saturation Index = log(IAP/Ksp)",
units=pyunits.dimensionless,
)


class ElectrolytePropertySet(StandardPropertySet):
Expand Down Expand Up @@ -1032,3 +1027,8 @@ class ElectrolytePropertySet(StandardPropertySet):
doc="Log of equilibrium coefficient",
units=pyunits.dimensionless,
)
saturation_index = PropertyMetadata(
name="saturation_index",
doc="Saturation Index = log(IAP/Ksp)",
units=pyunits.dimensionless,
)

0 comments on commit de5fade

Please sign in to comment.