Data for atmospheric air.
Reference 1: Eric W. Lemmon, Richard T. Jacobsen, Steven G. Penoncello, and Daniel G. Friend. Thermodynamic Properties of Air and Mixtures of Nitrogen, Argon, and Oxygen from 60 to 2000 K at Pressures to 2000 MPa. J. Phys. Chem. Ref. Data, 29(3):331–385, 2000. doi:10.1063/1.1285884. Reference 2: E. W. Lemmon and R. T Jacobsen. Viscosity and Thermal Conductivity Equations for Nitrogen, Oxygen, Argon, and Air. Int. J. Thermophys., 25(1):21–69, 2004. doi:10.1023/B:IJOT.0000022327.04529.f3.
Pr(h, p=None)
Dynamic viscosity as function of mass specific enthalpy at 1 atm (fit valid between 273.15 K to 1000 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/air.py
T(h, p=None)
Temperature as function of mass specific enthalpy at 1 atm (fit valid between 273.15 K to 1000 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/air.py
cp(h, p=None)
Specific heat capacity as function of mass specific enthalpy at 1 atm (fit valid between 273.15 K to 1000 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/air.py
h(T)
Mass specific enthalpy as function of temperature at 1 atm (fit valid between 273.15 K to 1000 K).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
T
|
float
|
Temperature in K |
required |
Returns:
Type | Description |
---|---|
float
|
Mass specific enthalpy in J/kg |
Source code in openterrace/fluid_substances/air.py
k(h, p=None)
Thermal conductivity as function of mass specific enthalpy at 1 atm (fit valid between 273.15 K to 1000 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/air.py
mu(h, p=None)
Dynamic viscosity as function of mass specific enthalpy at 1 atm (fit valid between 273.15 K to 1000 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/air.py
rho(h, p=None)
Density as function of mass specific enthalpy at 1 atm (fit valid between 273.15 K to 1000 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 |