The lexical units are combined to form even larger building blocks such as expressions according to the rules given by the expression part of the Modelica grammar in appendix A. For example, they can be built from operators, function references, components, or component references (referring to components) and literals. Each expression has a type and a variability.
This chapter describes the evaluation rules for expressions, the concept of expression variability, built-in mathematical operators and functions, and the built-in special Modelica operators with function syntax.
Expressions can contain variables and constants, which have types, predefined or user defined. The predefined built-in types of Modelica are Real, Integer, Boolean, String, and enumeration types which are presented in more detail in section 4.8.
Modelica equations, assignments and declaration equations contain expressions.
Expressions can contain basic operations, +, -, *, /, ^, etc. with normal precedence as defined in table 3.1 in section 3.2 and the grammar in appendix A. The semantics of the operations is defined for both scalar and array arguments in section 10.6.
It is also possible to define functions and call them in a normal fashion. The function call syntax for both positional and named arguments is described in section 12.4.1 and for vectorized calls in section 12.4.4. The built-in array functions are given in section 10.1.1 and other built-in operators in section 3.7.
Operator precedence determines the implicit subexpression structure of expressions with operators. (Explicit subexpression structure can be expressed by wrapping the subexpression in parentheses.) An operator with higher precedence ties harder to its operands than an operator with lower precedence. For example, ‘*’ having higher precedence than ‘+’ means that 1 + 2 * 3 is implicitly structured as 1 + (2 * 3).
Precedence group associativity is used to determine the implicit subexpression structure when operators belong to the same group of equal precedence. Left associativity means that subexpressions are formed from left to right. For example, left associativity of binary additive operators means that 1 - 2 - 3 is implicitly structured as (1 - 2) - 3. A precedence group may also be non-associative, meaning that there is no implicit subexpression structure defined based on associativity. For example, non-associativity of relational operators means that 1 < 2 < 3 is an invalid expression. Note that the operators don’t need to be identical for associativity to matter; also 1 == 2 < 3 is invalid, and 1 - 2 + 3 is implicitly structured as (1 - 2) + 3. Also note that the non-associative array range in Modelica can be used with either two or three operands separated by ‘:’, meaning that 1 : 2 : 5 is one valid ternary use of the operator rather than two invalid binary uses of the operator.
At the parsing stage – which is where the here defined operator precedence and associativity matters – the subexpression structure is fixed. Since Modelica tools have the freedom to symbolically manipulate expressions, this subexpression structure cannot be expected to reflect order of evaluation, compare section 3.3.
The following table presents the precedence and associativity of all the expression operators, consistent with and complementing information that can be derived from the Modelica grammar in appendix A.
Operator group | Assoc. | Operator syntax | Examples |
---|---|---|---|
Postfix array index | left | [] | arr[index] |
Postfix access | left | . | a.b |
Postfix function call | none | () | sin(4.36) |
Array construction | left | {, , } | {2, 3} |
Horizontal concatenation | left | [, , ] | [5, 6] |
Vertical concatenation | left | [; ; ] | [2, 3; 7, 8] |
Exponentiation | none | ^ | 2 ^ 3 |
Multiplicative | left | * / | 2 * 3, 2 / 3 |
Elementwise multiplicative | left | .* ./ | {2, 3} .* {4, 5} |
Additive unary | none | + - | -0.5 |
Additive | left | + - | 1 + 2 |
Elementwise additive | left | .+ .- | {2, 3} .+ {4, 5} |
Relational | none | < <= > >= == <> | a < b, a <= b, a > b |
Unary negation | none | not | not b1 |
Logical and | left | and | b1 and b2 |
Logical or | left | or | b1 or b2 |
Array range | none | : | 1 : 5 |
none | : : | start : step : stop | |
Conditional | none | if then else | if b then 3 else x |
Named argument | none | = | x = 2.26 |
The postfix array index and postfix access operators are not expression operators in the normal sense that a.b[1] can be treated as a.(b[1]). Instead, these operators need to be considered jointly to identify an entire component-reference (one of the alternative productions for primary in the grammar) which is the smallest unit that can be seen as an expression in itself. Postfix array index and postifx access can only be applied immediately to a component-reference; not even parentheses around the left operand are allowed.
[Example: Relative precedence of postfix array index and postfix access. Consider the following definition of the array variable a:
These are some valid as well as invalid ways to using postfix array index and postfix access:
The relation between a.x, a.x[2], and (a.x)[2] illustrates the effect of giving higher precedence to array index than postfix access. Had the precedence been equal, this would have changed the meaning of a.x[2] to the same thing that (a.x)[2] tries to express, being a component reference of type Real[2].]
[Example: Non-associative exponentiation and array range operator (note that the array range operator only takes scalar operands):
]
The additive unary expressions are only allowed in the first term of a sum, that is, not immediately to the right of any of the additive or elementwise additive operators. For example, 1 + -1 + 1 is an invalid expression (not parseable according to appendix A), whereas both 1 + (-1) + 1 and -1 + 1 + 1 are fine.
[Example: The unary minus and plus in Modelica is slightly different than in Mathematica11 1 Mathematica is a registered trademark of Wolfram Research Inc. and in MATLAB22 2 MATLAB is a registered trademark of MathWorks Inc., since the following expressions are illegal (whereas in Mathematica and in MATLAB these are valid expressions):
]
The conditional operator may also include elseif-branches.
Equality = and assignment := are not expression operators since they are allowed only in equations and in assignment statements respectively.
[The operator precedence table is useful when generating textual representations of Modelica expression trees. When doing this, attention must be paid to the rule that the unary additive operators are only allowed for the first term in a sum. A naive implementation might not produce all the required parentheses for an expression tree such as 1 + (-1), as it might think that the higher precedence of the unary operator makes the parentheses redundant. A trick that solves this problem is to instead treat the additive unary operators as left associative with the same precedence as the binary additive operators.]
A tool is free to solve equations, reorder expressions and to not evaluate expressions if their values do not influence the result (e.g., short-circuit evaluation of Boolean expressions). if-statements and if-expressions guarantee that their branches are only evaluated if the appropriate condition is true, but relational operators generating state or time events will during continuous integration have the value from the most recent event.
If a numeric operation overflows the result is undefined. For literals it is recommended to automatically convert the number to another type with greater precision.
[Example: If one wants to guard an expression against incorrect evaluation, it should be guarded by an if:
To guard square against square root of negative number use noEvent:
]
Modelica supports five binary arithmetic operators that operate on any numerical type:
Operator | Description |
---|---|
^ | Exponentiation |
* | Multiplication |
/ | Division |
+ | Addition |
- | Subtraction |
Some of these operators can also be applied to a combination of a scalar type and an array type, see section 10.6.
The syntax of these operators is defined by the following rules from the Modelica grammar:
Modelica supports the standard set of relational and logical operators, all of which produce the standard boolean values true or false:
Operator | Description |
---|---|
> | Greater than |
>= | Greater than or equal |
< | Less than |
<= | Less than or equal to |
== | Equality within expressions |
<> | Inequality |
A single equals sign = is never used in relational expressions, only in equations (chapter 8, section 10.6.1) and in function calls using named parameter passing (section 12.4.1).
The following logical operators are defined:
Operator | Description |
---|---|
not | Logical negation (unary operator) |
and | Logical and (conjunction) |
or | Logical or (disjunction) |
The grammar rules define the syntax of the relational and logical operators.
The following holds for relational operators:
Relational operators <, <=,>, >=, ==, <>, are only defined for scalar operands of simple types. The result is Boolean and is true or false if the relation is fulfilled or not, respectively.
For operands of type String, str1 str2 is for each relational operator, , defined in terms of the C function strcmp as strcmp(str1, str2) 0.
For operands of type Boolean, false < true.
For operands of enumeration types, the order is given by the order of declaration of the enumeration literals.
In relations of the form v1 == v2 or v1 <> v2, v1 or v2 shall, unless used in a function, not be a subtype of Real.
[The reason for this rule is that relations with Real arguments are transformed to state events (see section 8.5) and this transformation becomes unnecessarily complicated for the == and <> relational operators (e.g., two crossing functions instead of one crossing function needed, epsilon strategy needed even at event instants). Furthermore, testing on equality of Real variables is questionable on machines where the number length in registers is different to number length in main memory.]
Relational operators can generate events, see section 3.8.4.
Modelica also contains a few built-in operators which are not standard arithmetic, relational, or logical operators. These are described below, including time, which is a built-in variable, not an operator.
Concatenation of strings (see the Modelica grammar) is denoted by the + operator in Modelica.
[Example: "a" + "b" becomes "ab".]
The array constructor operator { } is described in section 10.4.
The array concatenation operator [ ] is described in section 10.4.2.
The array range constructor operator : is described in section 10.4.3.
An expression
is one example of if-expression. First expression1, which must be Boolean expression, is evaluated. If expression1 is true expression2 is evaluated and is the value of the if-expression, else expression3 is evaluated and is the value of the if-expression. The two expressions, expression2 and expression3, must be type compatible expressions (section 6.7) giving the type of the if-expression. The if-expressions with elseif are defined by replacing elseif by else if. For short-circuit evaluation see section 3.3.
[elseif in expressions has been added to the Modelica language for symmetry with if-equations.]
[Example:
]
It is possible to access members of a class instance using dot notation, i.e., the . operator.
[Example: R1.R for accessing the resistance component R of resistor R1. Another use of dot notation: local classes which are members of a class can of course also be accessed using dot notation on the name of the class, not on instances of the class.]
All declared variables are functions of the independent variable time. The variable time is a built-in variable available in all models and blocks, which is treated as an input variable. It is implicitly defined as:
The value of the start-attribute of time is set to the time instant at which the simulation is started.
[Example:
]
Certain built-in operators of Modelica have the same syntax as a function call. However, they do not behave as a mathematical function, because the result depends not only on the input arguments but also on the status of the simulation.
There are also built-in functions that depend only on the input argument, but also may trigger events in addition to returning a value. Intrinsic means that they are defined at the Modelica language level, not in the Modelica library. The following built-in intrinsic operators/functions are available:
Mathematical functions and conversion functions, see section 3.7.1 below.
Derivative and special purpose operators with function syntax, see section 3.7.4 below.
Event-related operators with function syntax, see section 3.7.5 below.
Array operators/functions, see section 10.1.1.
Note that when the specification references a function having the name of a built-in function it references the built-in function, not a user-defined function having the same name, see also section 12.5. With exception of the built-in String operator, all operators in this section can only be called with positional arguments.
The mathematical functions and conversion operators are listed below do not generate events.
Expression | Description | Details |
---|---|---|
abs() | Absolute value (event-free) | Function 3.1 |
sign() | Sign of argument (event-free) | Function 3.2 |
sqrt() | Square root | Function 3.3 |
Integer() | Conversion from enumeration to Integer | Operator 3.1 |
EnumTypeName() | Conversion from Integer to enumeration | Operator 3.2 |
String() | Conversion to String | Operator 3.3 |
All of these except for the String conversion operator are vectorizable according to section 12.4.6.
Additional non-event generating mathematical functions are described in section 3.7.3, whereas the event-triggering mathematical functions are described in section 3.7.2.
Expands into noEvent(if >= 0 then else -). Argument needs to be an Integer or Real expression.
[By not generating events the property abs() for all is ensured at the cost of sometimes having a derivative that changes discontinuously between events.
A typical case requiring the event-free semantics is a flow equation of the form abs(x) * x = y. With event generation, the equation would switch between the two forms x^2 = y and -x^2 = y at the events, where the events would not be coinciding exactly with the sign changes of y. When y passes through zero, neither form of the equation would have a solution in an open neighborhood of y , and hence solving the equation would have to fail at some point sufficiently close to y . Without event generation, on the other hand, the equation can be solved easily for x, also as y passes through zero. Note that without event generation the derivative of abs(x) * x never changes discontinuously, despite abs(x) having a discontinuous derivative.
In inverted form this equation is x = sign(y) * sqrt(abs(y)). With event generation, the call to sqrt would fail when applied to a negative number during root finding of the zero crossing for abs(y), compare section 8.5. Without event generation, on the other hand, evaluating sqrt(abs(y)) will never fail.]
Expands into noEvent(if > 0 then 1 else if < 0 then -1 else 0). Argument needs to be an Integer or Real expression.
Square root of if , otherwise an error occurs. Argument needs to be an Integer or Real expression.
Ordinal number of the expression of enumeration type that evaluates to the enumeration value E.enumvalue, where Integer(E.e1) = 1, Integer(E.en) = n, for an enumeration type E = enumeration(e1, , en). See also section 4.8.5.2.
For any enumeration type EnumTypeName, returns the enumeration value EnumTypeName.e such that . Refer to the definition of Integer above.
It is an error to attempt to convert values of that do not correspond to values of the enumeration type. See also section 4.8.5.3.
Convert a scalar non-String expression to a String representation. The first argument may be a Boolean , an Integer , a Real , or an enumeration value (section 4.8.5.2). The represent zero or more of the following named arguments (that cannot be passed as positional arguments):
Integer minimumLength = 0: Minimum length of the resulting string. If necessary, the blank character is used to fill up unused space.
Boolean leftJustified = true: If true, the converted result is left justified in the string; if false it is right justified in the string.
Integer significantDigits = 6: Number of significant digits in the result string. Only allowed when formatting a Real value.
The standard type coercion described in section 10.6.13 shall not be applied for the first argument of String. Hence, specifying significantDigits is an error when the first argument of String is an Integer expression.
For Real expressions the output shall be according to the Modelica grammar.
[Examples of Real values formatted with 6 significant digits: 12.3456, 0.0123456, 12345600, 1.23456E-10.]
The format string corresponding to is:
For Real:
(if leftJustified then "-" else "") + String(minimumLength)
+ "." + String(signficantDigits) + "g"
For Integer:
(if leftJustified then "-" else "") + String(minimumLength) + "d"
The ANSI-C style format string (which cannot be combined with any of the other named arguments) consists of a single conversion specification without the leading %. It shall not contain a length modifier, and shall not use ‘*’ for width and/or precision. For both Real and Integer values, the conversion specifiers ‘f’, ‘e’, ‘E’, ‘g’, ‘G’ are allowed. For Integer values it is also allowed to use the ‘d’, ‘i’, ‘o’, ‘x’, ‘X’, ‘u’, and ‘c’ conversion specifiers. Using the Integer conversion specifiers for a Real value is a deprecated feature, where tools are expected to produce a result by either rounding the value, truncating the value, or picking one of the Real conversion specifiers instead.
The ‘x’/‘X’ formats (hexa-decimal) and c (character) for Integer values give results that do not agree with the Modelica grammar.
[Example: Some situations worth a remark:
String(4.0, format = "g") produces 4 which is not a valid Real literal. However, it is an Integer literal that can be used almost anywhere in Modelica code instead of the Real literal 4.0 (with the first argument to String being a notable exception here).
String(4, format = ".3f") uses the Integer case of String since no automatic type coerction takes place for the first argument. An implementation may internally convert the value to floating point and then fall back on the Real case implementation of format = ".3f".
String(4611686018427387648, format = ".0f") (a valid Integer value in an implementation with 64 bit IntegerType) may produce 4611686018427387904 (not equal to input value), in case internal conversion to a 64 bit double is applied.
]
The operators listed below trigger events if used outside of a when-clause and outside of a clocked discrete-time partition (see section 16.8.1).
Expression | Description | Details |
---|---|---|
div(, ) | Division with truncation toward zero | Operator 3.4 |
mod(, ) | Integer modulus | Operator 3.5 |
rem(, ) | Integer remainder | Operator 3.6 |
ceil() | Smallest integer Real not less than | Operator 3.7 |
floor() | Largest integer Real not greater than | Operator 3.8 |
integer() | Largest Integer not greater than | Operator 3.9 |
These expression for div, ceil, floor, and integer are event generating expression. The event generating expression for mod(x,y) is floor(x/y), and for rem(x,y) it is div(x,y) – i.e., events are not generated when mod or rem changes continuously in an interval, but when they change discontinuously from one interval to the next.
[If this is not desired, the noEvent operator can be applied to them. E.g., noEvent(integer(v)).]
Algebraic quotient with any fractional part discarded (also known as truncation toward zero).
[This is defined for / in C99; in C89 the result for negative numbers is implementation-defined, so the standard function div must be used.]
Result and arguments shall have type Real or Integer. If either of the arguments is Real the result is Real otherwise Integer.
Integer modulus of , i.e., mod(, ) = - floor( / ) * . Result and arguments shall have type Real or Integer. If either of the arguments is Real the result is Real otherwise Integer.
[Note, outside of a when-clause state events are triggered when the return value changes discontinuously. Examples: mod(3, 1.4) = 0.2, mod(-3, 1.4) = 1.2, mod(3, -1.4) = -1.2.]
Integer remainder of , such that div(, ) * + rem(, ) = . Result and arguments shall have type Real or Integer. If either of the arguments is Real the result is Real otherwise Integer.
[Note, outside of a when-clause state events are triggered when the return value changes discontinuously. Examples: rem(3, 1.4) = 0.2, rem(-3, 1.4) = -0.2.]
Smallest integer not less than . Result and argument shall have type Real.
[Note, outside of a when-clause state events are triggered when the return value changes discontinuously.]
Largest integer not greater than . Result and argument shall have type Real.
[Note, outside of a when-clause state events are triggered when the return value changes discontinuously.]
Largest integer not greater than . The argument shall have type Real. The result has type Integer.
[Note, outside of a when-clause state events are triggered when the return value changes discontinuously.]
The functions listed below are elementary mathematical functions. Tools are expected to utilize well known properties of these functions (derivatives, inverses, etc) for symbolic processing of expressions and equations.
Expression | Description | Details |
---|---|---|
sin() | Sine | |
cos() | Cosine | |
tan() | Tangent ( shall not be: , -, , , ) | |
asin() | Inverse sine () | |
acos() | Inverse cosine () | |
atan() | Inverse tangent | |
atan2(, ) | Principal value of the arc tangent of | Function 3.4 |
sinh() | Hyperbolic sine | |
cosh() | Hyperbolic cosine | |
tanh() | Hyperbolic tangent | |
exp() | Exponential, base | |
log() | Natural (base ) logarithm () | |
log10() | Base 10 logarithm () |
These functions are the only ones that can also be called using the deprecated "builtin" external language, see section 12.9.
[End user oriented information about the elementary mathematical functions can be found for the corresponding functions in the Modelica.Math package.]
Principal value of the arc tangent of , using the signs of the two arguments to determine the quadrant of the result. The result is in the interval and satisfies:
The operators listed below include the derivative operator and special purpose operators with function syntax.
Expression | Description | Details |
---|---|---|
der() | Time derivative | Operator 3.10 |
delay(, ) | Time delay | Operator 3.11 |
cardinality() | Number of occurrences in connect-equations | Operator 3.12 |
homotopy(, ) | Homotopy initialization | Operator 3.13 |
semiLinear(, , ) | Sign-dependent slope | Operator 3.14 |
inStream() | Stream variable flow into component | Operator 3.15 |
actualStream() | Actual value of stream variable | Operator 3.16 |
spatialDistribution() | Variable-speed transport | Operator 3.17 |
getInstanceName() | Name of instance at call site | Operator 3.18 |
The special purpose operators with function syntax where the call below uses named arguments can be called with named arguments (with the specified names), or with positional arguments (the inputs of the functions are in the order given in the calls below).
The time derivative of . If the expression is a scalar it needs to be a subtype of Real. The expression and all its time-varying subexpressions must be continuous and semi-differentiable. If is an array, the operator is applied to all elements of the array. For non-scalar arguments the function is vectorized according to section 10.6.12.
[For Real parameters and constants the result is a zero scalar or array of the same size as the variable.]
Evaluates to (time - ) for and (time.start) for . The arguments, i.e., , and , need to be subtypes of Real. needs to be additionally a parameter expression. The following relation shall hold: , otherwise an error occurs. If is not supplied in the argument list, needs to be a parameter expression. For non-scalar arguments the function is vectorized according to section 10.6.12. For further details, see section 3.7.4.1.
[This is a deprecated operator. It should no longer be used, since it will be removed in one of the next Modelica releases.]
Returns the number of (inside and outside) occurrences of connector instance in a connect-equation as an Integer number. For further details, see section 3.7.4.3.
The scalar expressions and are subtypes of Real. A Modelica translator should map this operator into either of the two forms:
Returns (trivial implementation).
In order to solve algebraic systems of equations, the operator might during the solution process return a combination of the two arguments, ending at actual.
[Example: , where is a homotopy parameter going from 0 to 1.]
The solution must fulfill the equations for homotopy returning .
For non-scalar arguments the function is vectorized according to section 12.4.6. For further details, see section 3.7.4.4.
Returns: smooth(0, if >= 0 then * else * ). The result is of type Real. For non-scalar arguments the function is vectorized according to section 10.6.12. For further details, see section 3.7.4.5 (especially in the case when ).
inStream() is only allowed for stream variables defined in stream connectors, and is the value of the stream variable close to the connection point assuming that the flow is from the connection point into the component. This value is computed from the stream connection equations of the flow variables and of the stream variables. The operator is vectorizable. For further details, see section 15.2.
actualStream() returns the actual value of the stream variable for any flow direction. The operator is vectorizable. For further details, see section 15.3.
spatialDistribution allows approximation of variable-speed transport of properties. For further details, see section 3.7.4.2.
Returns a string with the name of the model/block that is simulated, appended with the fully qualified name of the instance in which this function is called. For further details, see section 3.7.4.6.
A few of these operators are described in more detail in the following.
[delay allows a numerical sound implementation by interpolating in the (internal) integrator polynomials, as well as a more simple realization by interpolating linearly in a buffer containing past values of expression . Without further information, the complete time history of the delayed signals needs to be stored, because the delay time may change during simulation. To avoid excessive storage requirements and to enhance efficiency, the maximum allowed delay time has to be given via . This gives an upper bound on the values of the delayed signals which have to be stored. For real-time simulation where fixed step size integrators are used, this information is sufficient to allocate the necessary storage for the internal buffer before the simulation starts. For variable step size integrators, the buffer size is dynamic during integration.
In principle, delay could break algebraic loops. For simplicity, this is not supported because the minimum delay time has to be given as additional argument to be fixed at compile time. Furthermore, the maximum step size of the integrator is limited by this minimum delay time in order to avoid extrapolation in the delay buffer.]
[Many applications involve the modelling of variable-speed transport of properties. One option to model this infinite-dimensional system is to approximate it by an ODE, but this requires a large number of state variables and might introduce either numerical diffusion or numerical oscillations. Another option is to use a built-in operator that keeps track of the spatial distribution of , by suitable sampling, interpolation, and shifting of the stored distribution. In this case, the internal state of the operator is hidden from the ODE solver.]
spatialDistribution allows the infinite-dimensional problem below to be solved efficiently with good accuracy
where is the transported quantity, is the normalized spatial coordinate (), is the time, is the normalized transport velocity and the boundary conditions are set at either or , depending on the sign of the velocity. The calling syntax is:
where in0, in1, out0, out1, and x are all subtypes of Real, positiveVelocity is a Boolean, initialPoints and initialValues are arrays of subtypes of Real of equal size, containing the x coordinates and the values of a finite set of points describing the initial distribution of . The out0 and out1 are given by the solutions at and ; and in0 and in1 are the boundary conditions at and (at each point in time only one of in0 and in1 is used). Elements in the initialPoints array must be sorted in non-descending order. The operator can not be vectorized according to the vectorization rules described in section 12.4.6. The operator can be vectorized only with respect to the arguments in0 and in1 (which must have the same size), returning vectorized outputs out0 and out1 of the same size; the arguments initialPoints and initialValues are vectorized accordingly.
The solution, , can be described in terms of characteristics:
This allows the direct computation of the solution based on interpolating the boundary conditions.
spatialDistribution can be described in terms of the pseudo-code given as a block:
[Note that the implementation has an internal state and thus cannot be described as a function in Modelica; initialPoints and initialValues are declared as parameters to indicate that they are only used during initialization.
The infinite-dimensional problem stated above can then be formulated in the following way:
Events are generated at the exact instants when the velocity changes sign – if this is not needed, noEvent can be used to suppress event generation.
If the velocity is known to be always positive, then out0 can be omitted, e.g.:
Technically relevant use cases for the use of spatialDistribution are modeling of electrical transmission lines, pipelines and pipeline networks for gas, water and district heating, sprinkler systems, impulse propagation in elongated bodies, conveyor belts, and hydraulic systems. Vectorization is needed for pipelines where more than one quantity is transported with velocity v in the example above.]
[cardinality is deprecated for the following reasons and will be removed in a future release:
Reflective operator may make early type checking more difficult.
Almost always abused in strange ways
Not used for Bond graphs even though it was originally introduced for that purpose.
]
[cardinality allows the definition of connection dependent equations in a model, for example:
]
The cardinality is counted after removing conditional components, and shall not be applied to expandable connectors, elements in expandable connectors, or to arrays of connectors (but can be applied to the scalar elements of array of connectors). cardinality should only be used in the condition of assert and if-statements that do not contain connect and similar operators, see section 16.8.1).
[During the initialization phase of a dynamic simulation problem, it often happens that large nonlinear systems of equations must be solved by means of an iterative solver. The convergence of such solvers critically depends on the choice of initial guesses for the unknown variables. The process can be made more robust by providing an alternative, simplified version of the model, such that convergence is possible even without accurate initial guess values, and then by continuously transforming the simplified model into the actual model. This transformation can be formulated using expressions of this kind:
in the formulation of the system equations, and is usually called a homotopy transformation. If the simplified expression is chosen carefully, the solution of the problem changes continuously with , so by taking small enough steps it is possible to eventually obtain the solution of the actual problem.
The operator can be called with ordered arguments or preferably with named arguments for improved readability.
It is recommended to perform (conceptually) one homotopy iteration over the whole model, and not several homotopy iterations over the respective non-linear algebraic equation systems. The reason is that the following structure can be present:
Here, a non-linear equation system is present. homotopy is, however used on a variable that is an “input” to the non-linear algebraic equation system, and modifies the characteristics of the non-linear algebraic equation system. The only useful way is to perform the homotopy iteration over and together.
The suggested approach is “conceptual”, because more efficient implementations are possible, e.g., by determining the smallest iteration loop, that contains the equations of the first BLT block in which homotopy is present and all equations up to the last BLT block that describes a non-linear algebraic equation system.
A trivial implementation of homotopy is obtained by defining the following function in the global scope:
]
[Example 1: In electrical systems it is often difficult to solve non-linear algebraic equations if switches are part of the algebraic loop. An idealized diode model might be implemented in the following way, by starting with a “flat” diode characteristic and then move with homotopy to the desired “steep” characteristic:
]
[Example 2: In electrical systems it is often useful that all voltage sources start with zero voltage and all current sources with zero current, since steady state initialization with zero sources can be easily obtained. A typical voltage source would then be defined as:
]
[Example 3: In fluid system modelling, the pressure/flowrate relationships are highly nonlinear due to the quadratic terms and due to the dependency on fluid properties. A simplified linear model, tuned on the nominal operating point, can be used to make the overall model less nonlinear and thus easier to solve without accurate start values. Named arguments are used here in order to further improve the readability.
]
[Example 4: Note that homotopy shall not be used to combine unrelated expressions, since this can generate singular systems from combining two well-defined systems.
The initial equation is expanded into
and you can solve the two equations to give
which has the correct value of at and of 1 at , but unfortunately has a singularity at .]
(See definition of semiLinear in section 3.7.4). In some situations, equations with semiLinear become underdetermined if the first argument (x) becomes zero, i.e., there are an infinite number of solutions. It is recommended that the following rules are used to transform the equations during the translation phase in order to select one meaningful solution in such cases:
[For symbolic transformations, the following property is useful (this follows from the definition):
is identical to:
The semiLinear function is designed to handle reversing flow in fluid systems, such as
i.e., the enthalpy flow rate H_flow is computed from the mass flow rate m_flow and the upstream specific enthalpy depending on the flow direction.]
Returns a string with the name of the model/block that is simulated, appended with the fully qualified name of the instance in which this function is called.
[Example:
If MyLib.Vehicle is simulated, the call of getInstanceName() returns "Vehicle.engine.controller".]
If this function is not called inside a model or block (e.g., the function is called in a function or in a constant of a package), the return value is not specified.
[The simulation result should not depend on the return value of this function.]
The concept of variability of an expression indicates to what extent the expression can vary over time. See also section 4.4.4 regarding the concept of variability. There are four levels of variability of expressions, starting from the least variable:
constant variability
parameter variability
discrete-time variability
continuous-time variability
While many invalid models can be rejected based on the declared variabilities of variables alone (without the concept of expression variability), the following rules both help enforcing compliance of computed solutions to declared variability, and impose additional restrictions that simplify reasoning and reporting of errors:
For an assignment v := expr or binding equation v = expr, v must be declared to be at least as variable as expr.
For multiple return assignment (x1, , xn) := expr (see section 11.2.1.1), all of x1, …, xn must be declared to be at least as variable as expr.
When determining whether an equation can contribute to solving for a variable v (for instance, when applying the perfect matching rule, see section 8.4), the equation can only be considered contributing if the resulting solution would be at most as variable as v.
[Example: The (underdetermined) model Test below illustrates two kinds of consequences due to variability constraints. First, it contains variability errors for declaration equations and assignments. Second, it illustrates the impact of variability on the matching of equations to variables, which can lead to violation of the perfect matching rule. Details of how variabilities are determined are given in the sections below. The discrete-valued equation variability rule mentioned in the comments below refer to the rule in section 3.8.4 that requires both sides of the Boolean equation to be discrete-time.
]
The variability of function calls needs to consider both the variability of arguments directly given in the function and the variability of the used default arguments, if any. This is especially a concern for functions given as a short class, see section 12.1.3. This has additional implications for redeclarations, see definition 6.8. The purity of the function, see section 12.3, does not influence the variability of the function call.
[The restrictions for calling functions declared as impure serve a similar purpose as the variability restrictions, see section 12.3, and thus it is not necessary to consider purity in the definition of variability. Consider a function reading an external file and returning some value from that file. Different uses can have the file updated before the simulation (as a parameter-expression), or during the simulation (as a discrete-time expression). Thus it depends on the use case and the specific file, not the function itself, and it would even be possible to update the file in continuous time (as part of an algorithm) and still use the same function.]
Constant expressions are:
Real, Integer, Boolean, String, and enumeration literals.
Constant variables, see section 4.4.4.
Except for the special built-in operators initial, terminal, der, edge, change, sample, and pre, a function or operator with constant subexpressions as argument (and no parameters defined in the function) is a constant expression.
Some function calls are constant expressions regardless of the arguments:
ndims(A)
Parameter expressions are:
Constant expressions.
Parameter variables, see section 4.4.4.
Input variables in functions behave as though they were parameter expressions.
Except for the special built-in operators initial, terminal, der, edge, change, sample, and pre, a function or operator with parameter subexpressions is a parameter expression.
Some function calls are parameter expressions even if the arguments are not:
cardinality(c), see restrictions for use in section 3.7.4.3.
end in A[ end ] if A is variable declared in a non-function class.
size(A) (including size(A, j) where j is parameter expression) if A is variable declared in a non-function class.
Connections.isRoot(A.R)
Connections.rooted(A.R)
Discrete-time expressions are:
Parameter expressions.
Discrete-time variables, see section 4.4.4.
Function calls where all input arguments of the function are discrete-time expressions.
Expressions where all the subexpressions are discrete-time expressions.
Expressions in the body of a when-clause, initial equation, or initial algorithm.
Expressions in a clocked discrete-time partition, see section 16.8.1.
Unless inside noEvent: Ordered relations (>, <, >=, <=) and the event generating functions ceil, floor, div, and integer, if at least one argument is non-discrete time expression and subtype of Real.
[These will generate events, see section 8.5. Note that rem and mod generate events but are not discrete-time expressions. In other words, relations inside noEvent, such as noEvent(x>1), are not discrete-time expressions.]
The functions pre, edge, and change result in discrete-time expressions.
Expressions in functions behave as though they were discrete-time expressions.
Inside an if-expression, if-clause, while-statement or for-clause, that is controlled by a non-discrete-time (that is continuous-time, but not discrete-time) switching expression and not in the body of a when-clause, it is not legal to have assignments to discrete-time variables, equations between discrete-time expressions, or real elementary relations/functions that should generate events.
[The restriction above is necessary in order to guarantee that all equations for discrete-time variable are discrete-time expressions, and to ensure that crossing functions do not become active between events.]
For a scalar or array equation expr1 = expr2 where neither expression is of base type Real, both expressions must be discrete-time expressions. For a record equation, the rule applies recursively to each of the components of the record. This is called the discrete-valued equation variability rule.
[For a scalar equation, the rule follows from the observation that a discrete-valued equation does not provide sufficient information to solve for a continuous-valued variable. Hence, and according to the perfect matching rule (see section 8.4), such an equation must be used to solve for a discrete-valued variable. By the interpretation of (B.1c) in appendix B, it follows that one of expr1 and expr2 must be the variable, and the other expression its solution. Since a discrete-valued variable is a discrete-time expression, it follows that its solution on the other side of the equation must have at most discrete-time variability. That is, both sides of the equation are discrete-time expressions.
For example, this rule shows that (outside of a when-clause) noEvent cannot be applied to either side of a Boolean, Integer, String, or enumeration equation, as this would result in a non-discrete-time expression.
For an array equation, note that each array can have only one element type, so if one element is Real, then all other entries must also be Real, possibly making use of standard type coercion, section 10.6.13. Hence, if the base type is not Real, all elements of the array are discrete-valued, allowing the argument above for a scalar equation to be applied elementwise to the array equation. That is, all array elements on both sides of the array equation will have discrete-time variability, showing that also the entire arrays expr1 and expr2 are discrete-time expressions.
For a record equation, the components of the record have independent types, and the equation is seen as a collection of equations for the individual components of the record. In order to support records with components of mixed variability, a record equation with sides given by either record variables or record constructors is conceptually split before variability is determined.]
[Example: Discrete-valued equation variability rule applied to record equations. In the first of the equations below, having a record constructor on both sides of the equation, the equation is conceptually split, and variabilities of time and true are considered separately. In the second equation, the makeR function call – regardless of inlining – means that the equation cannot be conceptually split into individual components of the record. The variability of the makeR call is continuous-time due to the time argument, which also becomes the variability of the b member of the call.
]
All expressions are continuous-time expressions including constant, parameter and discrete-time expressions. The term non-discrete-time expression refers to expressions that are neither constant, parameter nor discrete-time expressions. For example, time is a continuous-time built-in variable (see section 4.4.4) and time + 1 is a non-discrete-time expression. Note that plain time may, depending on context, refer to the continuous-time variable or the non-discrete-time expression.