Buildings.HeatTransfer.Convection.Functions.HeatFlux.BaseClasses
Base classes for convective heat transfer coefficients
Information
This package contains base classes that are used to construct the models in Buildings.HeatTransfer.Convection.Functions.HeatFlux.
Extends from Modelica.Icons.BasesPackage (Icon for packages containing base classes).
Package Content
| Name | Description | 
|---|---|
|  PartialHeatFlux | Partial function for convective heat flux | 
 Buildings.HeatTransfer.Convection.Functions.HeatFlux.BaseClasses.PartialHeatFlux
Buildings.HeatTransfer.Convection.Functions.HeatFlux.BaseClasses.PartialHeatFlux
Partial function for convective heat flux
Information
Partial function that is used to implement the convective heat flux as
q̇ = h ΔT,
where ΔT is the solid temperature minus the fluid temperature and h is the convective heat transfer coefficient.
Extends from Modelica.Icons.Function (Icon for functions).
Inputs
| Type | Name | Default | Description | 
|---|---|---|---|
| TemperatureDifference | dT | Temperature difference solid minus fluid [K] | 
Outputs
| Type | Name | Description | 
|---|---|---|
| HeatFlux | q_flow | Convective heat flux from solid to fluid [W/m2] | 
Modelica definition
partial function PartialHeatFlux "Partial function for convective heat flux"
  extends Modelica.Icons.Function;
  input Modelica.Units.SI.TemperatureDifference dT
    "Temperature difference solid minus fluid";
  output Modelica.Units.SI.HeatFlux q_flow
    "Convective heat flux from solid to fluid";
end PartialHeatFlux;
