FCSys.Conditions.ByConnector.Boundary.Single.Thermal

Conditions for thermal diffusion

Information

Extends from Modelica.Icons.Package (Icon for standard packages).

Package Content

NameDescription
FCSys.Conditions.ByConnector.Boundary.Single.Thermal.temperature temperature Temperature
FCSys.Conditions.ByConnector.Boundary.Single.Thermal.heatRate heatRate Rate of thermal conduction
FCSys.Conditions.ByConnector.Boundary.Single.Thermal.Partial Partial Template of a function to select a thermal quantity

FCSys.Conditions.ByConnector.Boundary.Single.Thermal.temperature FCSys.Conditions.ByConnector.Boundary.Single.Thermal.temperature

Temperature

Information

Extends from Partial (Template of a function to select a thermal quantity).

Inputs

TypeNameDefaultDescription
PressureAbsolutep Pressure [M/(L.T2)]
CurrentNdot Current [N/T]
Velocityphi[Orient] Velocity [L/T]
ForcemPhidot[Orient] Shear force [L.M/T2]
TemperatureAbsoluteT Temperature [L2.M/(N.T2)]
PowerQdot Rate of thermal conduction [L2.M/T3]

Outputs

TypeNameDescription
RealxValue of condition

Modelica definition

function temperature "Temperature"
  extends Partial;

algorithm 
  x := T;
end temperature;

FCSys.Conditions.ByConnector.Boundary.Single.Thermal.heatRate FCSys.Conditions.ByConnector.Boundary.Single.Thermal.heatRate

Rate of thermal conduction

Information

Extends from Partial (Template of a function to select a thermal quantity).

Inputs

TypeNameDefaultDescription
PressureAbsolutep Pressure [M/(L.T2)]
CurrentNdot Current [N/T]
Velocityphi[Orient] Velocity [L/T]
ForcemPhidot[Orient] Shear force [L.M/T2]
TemperatureAbsoluteT Temperature [L2.M/(N.T2)]
PowerQdot Rate of thermal conduction [L2.M/T3]

Outputs

TypeNameDescription
RealxValue of condition

Modelica definition

function heatRate "Rate of thermal conduction"
  extends Partial;

algorithm 
  x := Qdot;
end heatRate;

FCSys.Conditions.ByConnector.Boundary.Single.Thermal.Partial FCSys.Conditions.ByConnector.Boundary.Single.Thermal.Partial

Template of a function to select a thermal quantity

Information

This function takes as inputs all the efforts and flows of the associated connector. It should be extended to add an algorithm that maps these inputs to a single value.

Extends from Modelica.Icons.Function (Icon for functions).

Inputs

TypeNameDefaultDescription
PressureAbsolutep Pressure [M/(L.T2)]
CurrentNdot Current [N/T]
Velocityphi[Orient] Velocity [L/T]
ForcemPhidot[Orient] Shear force [L.M/T2]
TemperatureAbsoluteT Temperature [L2.M/(N.T2)]
PowerQdot Rate of thermal conduction [L2.M/T3]

Outputs

TypeNameDescription
RealxValue of condition

Modelica definition

partial function Partial 
  "Template of a function to select a thermal quantity"
  extends Modelica.Icons.Function;

  // Material
  input Q.PressureAbsolute p "Pressure";
  input Q.Current Ndot "Current";

  // Translational
  input Q.Velocity phi[Orient] "Velocity";
  input Q.Force mPhidot[Orient] "Shear force";

  // Thermal
  input Q.TemperatureAbsolute T "Temperature";
  input Q.Power Qdot "Rate of thermal conduction";

  output Real x "Value of condition";

end Partial;