Data for water.
Reference 1: W. Wagner and A. Pruß. The IAPWS Formulation 1995 for the Thermodynamic Properties of Ordinary Water Substance for General and Scientific Use. J. Phys. Chem. Ref. Data, 31:387–535, 2002. doi:10.1063/1.1461829. Reference 2: M. L. Huber, R. A. Perkins, D. G. Friend, J. V. Sengers, M. J. Assael, I. N. Metaxa, K. Miyagawa, R. Hellmann, and E. Vogel. New International Formulation for the Thermal Conductivity of H2O. J. Phys. Chem. Ref. Data, 41(3):033102–1:23, 2012. doi:10.1063/1.4738955. Reference 3: M. L. Huber, R. A. Perkins, A. Laesecke, D. G. Friend, J. V. Sengers, M. J Assael, I. M. Metaxa, E. Vogel, R. Mareš, and K. Miyagawa. New International Formulation for the Viscosity of H2O. J. Phys. Chem. Ref. Data, 38(2):101–125, 2009. doi:10.1063/1.3088050.
Pr(h, p=None)
Prandtl number as function of mass specific enthalpy at 1 atm (fit valid between 273 K to 373 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Type | Description |
---|---|
float
|
Prandtl number |
Source code in openterrace/fluid_substances/water.py
T(h, p=None)
Temperature as function of mass specific enthalpy at 1 atm (fit valid between 273 K to 373 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Type | Description |
---|---|
float
|
Temperature in kelvin |
Source code in openterrace/fluid_substances/water.py
cp(h, p=None)
Specific heat capacity as function of mass specific enthalpy at 1 atm (fit valid between 273 K to 373 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Type | Description |
---|---|
float
|
Specific heat capacity in J/(kg K) |
Source code in openterrace/fluid_substances/water.py
h(T)
Mass specific enthalpy as function of temperature at 1 atm (fit valid between 273 K to 373 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
T
|
float
|
Temperature in K |
required |
Returns:
Type | Description |
---|---|
float
|
Specific enthalpy in J/kg |
Source code in openterrace/fluid_substances/water.py
k(h, p=None)
Thermal conductivity as function of mass specific enthalpy at 1 atm (fit valid between 273 K to 373 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Type | Description |
---|---|
float
|
Thermal conductivity in W/(m K) |
Source code in openterrace/fluid_substances/water.py
mu(h, p=None)
Dynamic viscosity as function of mass specific enthalpy at 1 atm (fit valid between 273 K to 373 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Type | Description |
---|---|
float
|
Dynamic viscosity in kg/(m*s) |
Source code in openterrace/fluid_substances/water.py
rho(h, p=None)
Density as function of mass specific enthalpy at 1 atm (fit valid between 273 K to 373 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Type | Description |
---|---|
float
|
Density in kg/m^3 |