Data for ATS58 phase change material.
Reference: https://www.axiotherm.de/en/download/project/productdatasheet/file/19/
T_s = 56+273.15 (solidification temperature) T_l = 58+273.15 (liquid temperature) k_s = 1 (solid thermal conductivity) k_l = 0.6 (liquid thermal conductivity) h_f = 240000 (latent heat of fusion) cp = 3000 (specific heat capacity at constant pressure) rho_l = 1280 (liquid density) rho_s = 1280 (solid density) h_s = T_scp (mass specific enthalpy before phase change) h_l = T_scp+h_f (mass specific enthalpy at after phase change)
T(h, p=None)
Temperature as function of mass specific enthalpy at 1 atm (fit assumes piecewice constant cp with phase change).
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/bed_substances/ATS58.py
cp(h, p=None)
Specific heat capacity as function of mass specific enthalpy at 1 atm (fit assumes piecewice constant cp with phase change).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
Specific heat capacity in J/(kg K) |
Source code in openterrace/bed_substances/ATS58.py
h(T)
Mass specific enthalpy as function of temperature at 1 atm (fit assumes piecewice constant cp with phase change).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
T
|
float
|
Temperature in K |
required |
Returns:
Type | Description |
---|---|
float
|
Specific enthalpy in J/kg |
Source code in openterrace/bed_substances/ATS58.py
k(h, p=None)
Thermal conductivity as function of mass specific enthalpy at 1 atm (fit assumes piecewice constant k).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
Thermal conductivity in W/(m K) |
Source code in openterrace/bed_substances/ATS58.py
rho(h, p=None)
Density as function of mass specific entahlpy at 1 atm (fit assumes constant density).
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h
|
float
|
Specific enthalpy in J/kg |
required |
p
|
float
|
Pressure in Pa |
None
|
Returns:
Name | Type | Description |
---|---|---|
float |
float
|
Density in kg/m^3 |