Utility functions used to implement a Modelica_StateGraph2
Package Content
| Name | Description |
initializeLoopCheck
| Return dummy Boolean for the detection of algebraic loops (in order to avoid that the tool can perform symbolic manipulations) |
propagateLoopCheck
| Propagate flag to check loop |
Return dummy Boolean for the detection of algebraic loops (in order to avoid that the tool can perform symbolic manipulations)
Outputs
| Type | Name | Description |
| Boolean | result | |
Modelica definition
function initializeLoopCheck
"Return dummy Boolean for the detection of algebraic loops (in order to avoid that the tool can perform symbolic manipulations)"
output Boolean result;
protected
Integer dummy;
algorithm
dummy := 0;
result :=true;
end initializeLoopCheck;
Propagate flag to check loop
Information
Extends from Modelica.Icons.Function (Icon for functions).
Inputs
| Type | Name | Default | Description |
| Boolean | b[:] | | |
Outputs
| Type | Name | Description |
| Boolean | result | |
Modelica definition
function propagateLoopCheck "Propagate flag to check loop"
extends Modelica.Icons.Function;
input Boolean b[:];
output Boolean result;
protected
Integer dummy;
algorithm
dummy := 0;
result := true;
end propagateLoopCheck;
Automatically generated Fri Nov 12 17:27:08 2010.