Buildings.HeatTransfer.Data.BaseClasses
Base classes for package Data
Information
Extends from Modelica.Icons.BasesPackage (Icon for packages containing base classes).
Package Content
Name | Description |
---|---|
Material | Thermal properties of materials w/o storage |
ThermalProperties | Thermal properties of materials with storage |
Buildings.HeatTransfer.Data.BaseClasses.Material
Thermal properties of materials w/o storage
Information
Base record for materials that declares the thermal properties.The specific heat capacity can be zero, in which case the material will be modeled as a thermal resistor that does not store energy.
Note that the thermal resistance is in units of m2 K ⁄ W and not K ⁄ W because this record does not have the surface area as a parameter. The surface area will be defined in the model of the construction that uses this material. This allows use of the same material in walls, floors and ceilings of different surface area.
Extends from Modelica.Icons.Record (Icon for records).
Parameters
Type | Name | Default | Description |
---|---|---|---|
Length | x | Material thickness [m] | |
ThermalConductivity | k | Thermal conductivity [W/(m.K)] | |
SpecificHeatCapacity | c | Specific heat capacity [J/(kg.K)] | |
Density | d | Mass density [kg/m3] | |
Real | R | Thermal resistance of a unit area of material [m2.K/W] | |
Integer | nStaRef | 3 | Number of state variables in a reference material of 0.2 m concrete |
Boolean | steadyState | (c < Modelica.Constants.eps ... | Flag, if true, then material is computed using steady-state heat conduction |
Properties for phase change material | |||
Temperature | TSol | Solidus temperature, used only for PCM. [K] | |
Temperature | TLiq | Liquidus temperature, used only for PCM [K] | |
SpecificInternalEnergy | LHea | Latent heat of phase change [J/kg] | |
Advanced | |||
Integer | nSta | max(1, integer(ceil(nStaReal... | Actual number of state variables in material |
Real | piRef | 331.4 | Ratio x/sqrt(alpha) for reference material of 0.2 m concrete |
Real | piMat | if steadyState then piRef el... | Ratio x/sqrt(alpha) |
Real | nStaReal | nStaRef*piMat/piRef | Number of states as a real number |
Modelica definition
Buildings.HeatTransfer.Data.BaseClasses.ThermalProperties
Thermal properties of materials with storage
Information
Base record for materials, used in circular geometry or other configurations, that only declares the thermal properties.The specific heat capacity can be zero, in which case the material will be modeled as a thermal resistor that does not store energy.
Extends from Modelica.Icons.Record (Icon for records).
Parameters
Type | Name | Default | Description |
---|---|---|---|
ThermalConductivity | k | Thermal conductivity [W/(m.K)] | |
SpecificHeatCapacity | c | Specific heat capacity [J/(kg.K)] | |
Density | d | Mass density [kg/m3] | |
Boolean | steadyState | (c < Modelica.Constants.eps ... | Flag, if true, then material is computed using steady-state heat conduction |