Skip to content

Commit

Permalink
Minor fix to var name
Browse files Browse the repository at this point in the history
  • Loading branch information
john-science committed Feb 7, 2024
1 parent 2a20bb6 commit ceeca89
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions armi/materials/water.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
from armi.utils import units
from armi.utils.units import getTk

__REF_SR1_86 = (
_REF_SR1_86 = (
"IAPWS SR1-86 Revised Supplementary Release on Saturation Properties of Ordinary Water and "
"Steam"
)
Expand All @@ -46,13 +46,13 @@ class Water(Fluid):

thermalScatteringLaws = (tsl.byNbAndCompound[nb.byName["H"], tsl.H2O],)
references = {
"vapor pressure": __REF_SR1_86,
"enthalpy (saturated water)": __REF_SR1_86,
"enthalpy (saturated steam)": __REF_SR1_86,
"entropy (saturated water)": __REF_SR1_86,
"entropy (saturated steam)": __REF_SR1_86,
"density (saturated water)": __REF_SR1_86,
"density (saturated steam)": __REF_SR1_86,
"vapor pressure": _REF_SR1_86,
"enthalpy (saturated water)": _REF_SR1_86,
"enthalpy (saturated steam)": _REF_SR1_86,
"entropy (saturated water)": _REF_SR1_86,
"entropy (saturated steam)": _REF_SR1_86,
"density (saturated water)": _REF_SR1_86,
"density (saturated steam)": _REF_SR1_86,
}

TEMPERATURE_CRITICAL_K = 647.096
Expand Down

0 comments on commit ceeca89

Please sign in to comment.