Name | Description |
---|---|
temperature | Temperature |
heatRate | Rate of thermal conduction |
Partial | Template of a function to select a thermal quantity |
Type | Name | Default | Description |
---|---|---|---|
PressureAbsolute | p | Pressure [M/(L.T2)] | |
Current | Ndot | Current [N/T] | |
Velocity | phi[Orient] | Velocity [L/T] | |
Force | mPhidot[Orient] | Shear force [L.M/T2] | |
TemperatureAbsolute | T | Temperature [L2.M/(N.T2)] | |
Power | Qdot | Rate of thermal conduction [L2.M/T3] |
Type | Name | Description |
---|---|---|
Real | x | Value of condition |
function temperature "Temperature" extends Partial; algorithm x := T; end temperature;
Type | Name | Default | Description |
---|---|---|---|
PressureAbsolute | p | Pressure [M/(L.T2)] | |
Current | Ndot | Current [N/T] | |
Velocity | phi[Orient] | Velocity [L/T] | |
Force | mPhidot[Orient] | Shear force [L.M/T2] | |
TemperatureAbsolute | T | Temperature [L2.M/(N.T2)] | |
Power | Qdot | Rate of thermal conduction [L2.M/T3] |
Type | Name | Description |
---|---|---|
Real | x | Value of condition |
function heatRate "Rate of thermal conduction" extends Partial; algorithm x := Qdot; end heatRate;
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).
Type | Name | Default | Description |
---|---|---|---|
PressureAbsolute | p | Pressure [M/(L.T2)] | |
Current | Ndot | Current [N/T] | |
Velocity | phi[Orient] | Velocity [L/T] | |
Force | mPhidot[Orient] | Shear force [L.M/T2] | |
TemperatureAbsolute | T | Temperature [L2.M/(N.T2)] | |
Power | Qdot | Rate of thermal conduction [L2.M/T3] |
Type | Name | Description |
---|---|---|
Real | x | Value of condition |
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;