Name | Description |
---|---|
velocity | Velocity |
force | Force |
Partial | Template of a function to select a translational quantity |
Type | Name | Default | Description |
---|---|---|---|
Velocity | phi[:] | Velocity [L/T] | |
Force | mPhidot[:] | Force [L.M/T2] | |
TemperatureAbsolute | T | Temperature [L2.M/(N.T2)] | |
Power | Qdot | Rate of thermal conduction [L2.M/T3] | |
Integer | i | Index of the translational axis |
Type | Name | Description |
---|---|---|
Real | x | Value of condition |
function velocity "Velocity" extends Partial; algorithm x := phi[i]; end velocity;
Type | Name | Default | Description |
---|---|---|---|
Velocity | phi[:] | Velocity [L/T] | |
Force | mPhidot[:] | Force [L.M/T2] | |
TemperatureAbsolute | T | Temperature [L2.M/(N.T2)] | |
Power | Qdot | Rate of thermal conduction [L2.M/T3] | |
Integer | i | Index of the translational axis |
Type | Name | Description |
---|---|---|
Real | x | Value of condition |
function force "Force" extends Partial; algorithm x := mPhidot[i]; end force;
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 |
---|---|---|---|
Velocity | phi[:] | Velocity [L/T] | |
Force | mPhidot[:] | Force [L.M/T2] | |
TemperatureAbsolute | T | Temperature [L2.M/(N.T2)] | |
Power | Qdot | Rate of thermal conduction [L2.M/T3] | |
Integer | i | Index of the translational axis |
Type | Name | Description |
---|---|---|
Real | x | Value of condition |
partial function Partial "Template of a function to select a translational quantity" extends Modelica.Icons.Function; // Translational input Q.Velocity phi[:] "Velocity"; input Q.Force mPhidot[:] "Force"; // Thermal input Q.TemperatureAbsolute T "Temperature"; input Q.Power Qdot "Rate of thermal conduction"; input Integer i(min=1,max=3) "Index of the translational axis"; output Real x "Value of condition"; end Partial;