Parametrizing Modelica Components
Learn about parametrizing Modelica components with OML expressions.
In Twin Activate, Modelica components, like regular Twin Activate blocks, can have parameters with values that are defined using OML expressions. These expressions are evaluated in the workspace of the diagram where the component is placed, following the usual scoping rules for Twin Activate blocks.
where C1 and C2 are OML variables defined in a diagram context or the model Initialization script.
The parameters of Twin Activate Modelica components correspond to those of the underlying Modelica library components. The values of these parameters can in most cases be defined in OML, however, some Modelica component parameter values are more conveniently defined using constants and functions available in Modelica libraries. In some cases, they cannot even be expressed using OML standard data types because they refer to Modelica-specific entities
To enable access to the Modelica environment for evaluating component parameters,
Twin Activate provides the OML function,
FromModelica. This function creates and returns an OML object
of type ModelicaExpression
, which can be used in OML expressions to
define parameter values. Some variables of type ModelicaExpression
,
in particular, when the entity returned by FromModelica is not
Modelica-specific, can be used in simple OML expressions. These expressions are
translated into Modelica code and treated by the Modelica compiler. This process is
transparent to you.