| Name | Description |
|---|---|
| Temperature | |
| Rate of thermal conduction | |
| Template of a function to select a thermal quantity |
FCSys.Conditions.ByConnector.Boundary.Single.Thermal.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 temperature "Temperature" extends Partial; algorithm x := T; end temperature;
FCSys.Conditions.ByConnector.Boundary.Single.Thermal.heatRate
| 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;
FCSys.Conditions.ByConnector.Boundary.Single.Thermal.PartialThis 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;