Annotations =========== .. raw:: latex \doublelabel{annotations} Annotations are intended for storing extra information about a model, such as graphics, documentation or versioning, etc. A Modelica tool is free to define and use other annotations, in addition to those defined here, according to . The only requirement is that any tool shall save files with all annotations from this chapter and all vendor-specific annotations intact. To ensure this, annotations must be represented with constructs according to the Modelica grammar (for replaceable class declarations with a constraining-clause also refer to ). The specification in this document defines the semantic meaning if a tool implements any of these annotations. Vendor-Specific Annotations --------------------------- .. raw:: latex \doublelabel{vendor-specific-annotations} A vendor may – anywhere inside an annotation – add specific, possibly undocumented, annotations which are not intended to be interpreted by other tools. Two variants of vendor-specific annotations exist; one simple and one hierarchical. Double underscore concatenated with a vendor name as initial characters of the identifier are used to identify vendor-specific annotations. [\ *Example*: :: annotation ( Icon(coordinateSystem(extent={{-100,-100}, {100,100}}), graphics={__NameOfVendor(Circle(center={0,0}, radius=10))}) ); *This introduces a new graphical primitive* Circle *using the hierarchical variant of vendor-specific annotations.* :: annotation ( Icon(coordinateSystem(extent={{-100,-100}, {100,100}}), graphics={Rectangle(extent={{-5,-5},{7,7}}, __NameOfVendor_shadow=2)}) ); *This introduces a new attribute* \__NameOfVendor_shadow *for the* Rectangle *primitive using the simple variant of vendor-specific annotations.*\ ] Annotations for Documentation ----------------------------- .. raw:: latex \doublelabel{annotations-for-documentation} :: documentation-annotation: annotation "(" Documentation "(" "info" "=" STRING ["," "revisions" "=" STRING ] ")" ")" The “Documentation” annotation can contain the “info” annotation giving a textual description, the “revisions” annotation giving a list of revisions and other annotations defined by a tool [\ *The “revisions” documentation may be omitted in printed documentation*\ ]. How the tool interprets the information in “Documentation” is unspecified. Within a string of the “Documentation” annotation, the tags and or and define optionally begin and end of content that is HTML encoded. For external links see . Links to Modelica classes may be defined with the HTML link command using scheme “Modelica”, e.g., :: MultiBody.Tutorial Together with scheme “Modelica” the (URI) fragment specifiers #diagram, #info, #text, #icon may be used to reference different layers. Example: :: Revolute :: preferred-view-annotation: annotation "(" preferredView "=" ("info" | "diagram" | "text") ")" The preferredView annotation defines the default view when selecting the class. info means info layer, i.e., the documentation of the class, diagram means diagram layer and text means the Modelica text layer. :: documentation-class-annotation: annotation "(" DocumentationClass "=" true ")" Only allowed as class annotation on any kind of class and implies that this class and all classes within it are treated as having the annotation preferredView="info". If the annotation preferredView is explicitly set for a class, it has precedence over a DocumentationClass annotation *[A tool may display such classes in special ways. For example, the description texts of the classes might be displayed instead of the class names, and if no icon is defined, a special information default icon may be displayed in the package browser.]* Annotations for Code Generation ------------------------------- .. raw:: latex \doublelabel{annotations-for-code-generation} :: code-annotation: annotation"(" codeGenerationFlag "=" ( false | true ) ")" codeGenerationFlag : "Evaluate" | "HideResult" | "Inline" | "LateInline" | "GenerateEvents" These annotations can influence the code generation. The details are defined in the next table: +-----------------------------------+-----------------------------------+ | Evaluate | The annotation Evaluate can occur | | | in the component declaration, its | | | type declaration, or a base-class | | | of the type-declaration. In the | | | case of multiple conflicting | | | annotations it is handled | | | similarly to modifiers (e.g., an | | | Evaluate-annotation on the | | | component declaration takes | | | precedence). The annotation | | | Evaluate only has effect for a | | | component declared with the | | | prefix parameter. | | | | | | If ``Evaluate = true``, the model | | | developer proposes to utilize the | | | value for the symbolic | | | processing. In that case, it is | | | not possible to change the | | | parameter value after symbolic | | | pre-processing. | | | | | | If ``Evaluate = false``, the | | | model developer proposes to not | | | utilize the value of the | | | corresponding parameter for the | | | symbolic processing. | | | | | | [Evaluate *is for example used | | | for axis of rotation parameters | | | in the* | | | Modelica.Mechanics.MultiBody | | | *library in order to improve the | | | efficiency of the generated | | | code*\ ] | +===================================+===================================+ | HideResult | ``HideResult = true`` defines | | | that the model developer proposes | | | to not show the simulator results | | | of the corresponding component | | | [\ *e.g., it will not be possible | | | to plot this variable*\ ]. | | | | | | ``HideResult = false`` defines | | | that the developer proposes to | | | show the corresponding component | | | [\ *if a variable is declared in | | | a protected section, a tool might | | | not include it in a simulation | | | result. By setting* HideResult = | | | false\ *, the modeler would like | | | to have the variable in the | | | simulation result, even if in the | | | protected section*\ ]. | | | | | | [HideResult *is for example used | | | in the connectors of the* | | | Modelica.StateGraph *library to | | | not show variables to the modeler | | | that are of no interest to him | | | and would confuse him*\ ] | +-----------------------------------+-----------------------------------+ | Inline | Has only an effect within a | | | function declaration. | | | | | | If “``Inline = true``”, the model | | | developer proposes to inline the | | | function. This means, that the | | | body of the function is included | | | at all places where the function | | | is called. | | | | | | If “``Inline = true``”, the model | | | developer proposes to not inline | | | the function. | | | | | | [The annotation ``Inline = true`` | | | *is for example used in* | | | Modelica.Mechanics.MultiBody.Fram | | | es | | | *and in functions of* | | | Modelica.Media *to have no | | | overhead for function calls such | | | as resolving a vector in a | | | different coordinate system and | | | at the same time the function can | | | be analytically differentiated, | | | e.g., for index reduction needed | | | for mechanical systems.*\ ] | +-----------------------------------+-----------------------------------+ | LateInline | Has only an effect within a | | | function declaration. | | | | | | If “``LateInline = true``”, the | | | model developer proposes to | | | inline the function after all | | | symbolic transformations have | | | been performed *[especially | | | differentiation and inversion of | | | functions; for efficiency reasons | | | it is then useful to replace all | | | function calls with identical | | | input arguments by one function | | | call, before the inlining]*. | | | | | | If “``LateInline = false``”, the | | | model developer proposes to not | | | inline the function after | | | symbolic transformations have | | | been performed. | | | | | | “``Inline=true, LateInline=false` | | | `” | | | is identical to “``Inline=true``” | | | | | | “``Inline=true, LateInline=true`` | | | ” | | | is identical to | | | “``LateInline=true``” | | | | | | “``Inline=false, LateInline=true` | | | `” | | | is identical to | | | “``LateInline=true``” | | | | | | [\ *This annotation is for | | | example used in | | | Modelica.Media.*\ Water.IF97_Util | | | ities.T_props_ph | | | *to provide in combination with | | | common subexpression elimination | | | the automatic caching of function | | | calls. Furthermore, it is used in | | | order that a tool is able to | | | propagate specific enthalpy over | | | connectors in the Modelica_Fluid | | | library.*\ ] | +-----------------------------------+-----------------------------------+ | InlineAfterIndexReduction | Has only an effect within a | | | function declaration. | | | | | | If true, the model developer | | | proposes to inline the function | | | after the function is | | | differentiated for index | | | reduction, and before any other | | | symbolic transformations are | | | performed. This annotation cannot | | | be combined with annotations | | | Inline and LateInline. | | | | | | [\ *This annotation is for | | | example used in* | | | Modelica.Mechanics.Rotational.Sou | | | rces.Move | | | *to define that an input signal | | | is the derivative of another | | | input signal.*\ ] | +-----------------------------------+-----------------------------------+ | GenerateEvents | Has only an effect within a | | | function declaration | | | | | | If “``GenerateEvents = true``”, | | | the model developer proposes that | | | crossing functions in the | | | function should generate events | | | (one possibility of doing this is | | | to inline the function and | | | generate events for the inlined | | | function). | | | | | | [\ *This annotation is for | | | example used in* | | | Modelica.Media.Water.IF97_Utiliti | | | es.phase_dT | | | *to indicate that the output | | | should generate an event when it | | | changes.*\ ] | +-----------------------------------+-----------------------------------+ :: smoothOrder-annotation: annotation"(" smoothOrder "=" UNSIGNED-NUMBER ")" | annotation"(" smoothOrder "(" normallyConstant "=" NAME ["," normallyConstant "=" NAME] ")" "=" UNSIGNED-NUMBER ")" This annotation has only an effect within a function declaration. smoothOrder defines the number of differentiations of the function, in order that all of the differentiated outputs are continuous provided all input arguments and their derivatives up to order smoothOrder are continuous [\ *This means that the function is at least* C\ :sup:`smoothOrder`. smoothOrder = 1 *means that the function can be differentiated at least once in order that all output arguments are still continuous, provided the input arguments are continuous. If a tool needs the derivative of a function, e.g. for index reduction or to compute an analytic Jacobian, the function can be differentiated analytically at least smoothOrder times*\ ]. The optional argument normallyConstant of smoothOrder defines that the function argument NAME is usually constant [\ *A tool might check whether the actual argument to NAME is a parameter expression at the place where the function is called. If this is the case, the derivative of the function might be constructed under the assumption that the corresponding argument is constant, to enhance efficiency. Typically, a tool would generate at most two different derivative functions of a function: One, under the assumption that all normallyConstant arguments are actually constant. And one, under the assumption that all input arguments are time varying. Based on the actual arguments of the function call either of the two derivative functions is used.* *This annotation is used by many functions of the* Modelica.Fluid *library, such as* Modelica.Fluid.Dissipation.PressureLoss.StraightPipe.dp_laminar_DP\ *, since geometric arguments to these functions are usually constant*\ ] Annotations for Simulation Experiments -------------------------------------- .. raw:: latex \doublelabel{annotations-for-simulation-experiments} :: experiment-annotation: annotation"(" "experiment" "(" [experimentOption] {, experimentOption}] ")" experimentOption: StartTime "=" [ "+" | "-" ] UNSIGNED-NUMBER | StopTime "=" [ "+" | "-"] UNSIGNED-NUMBER | Interval "=" UNSIGNED-NUMBER | Tolerance "=" UNSIGNED-NUMBER The experiment annotation defines the default start time (StartTime) in [s], the default stop time (StopTime) in [s], the suitable time resolution for the result grid (Interval) in [s], and the default relative integration tolerance (Tolerance) for simulation experiments to be carried out with the model or block at hand. Annotation for single use of class ---------------------------------- .. raw:: latex \doublelabel{annotation-for-single-use-of-class} For state machines it is useful to have single instances of local classes. This can be done using: :: annotation(singleInstance=true) The annotation singleInstance in a class indicates that there should only be one component instance of the class, and it should be in the same scope as the class is defined. The intent is to remove the class when the component is removed and to prevent duplication of the component. Annotations for Graphical Objects --------------------------------- .. raw:: latex \doublelabel{annotations-for-graphical-objects} A graphical representation of a class consists of two abstraction layers, icon layer and diagram layer showing graphical objects, component icons, connectors and connection lines. The icon representation typically visualizes the component by hiding hierarchical details. The hierarchical decomposition is described in the diagram layer showing icons of subcomponents and connections between these. Graphical annotations described in this chapter ties into the Modelica grammar as follows. :: graphical-annotations : annotation "(" [ layer-annotations ] ")" layer-annotations : ( icon\_layer | diagram\_layer ) [ "," layer-annotations ] Layer descriptions (start of syntactic description): :: icon-layer : "Icon" "(" [ coordsys-specification "," ] graphics ")" diagram-layer : "Diagram" "(" [ coordsys-specification "," ] graphics ")" [\ *Example*: :: annotation ( Icon(coordinateSystem(extent={{-100,-100}, {100,100}}), graphics={Rectangle(extent={{-100,-100}, {100,100}}), Text(extent={{-100,-100}, {100,100}}, textString="Icon")})); ] The graphics is specified as an ordered sequence of graphical primitives, which are described below. First base-class contents is drawn according to the order of the extends-clauses, and then graphical primitives are drawn according to the order such that later objects can cover earlier ones. [\ *Note that the ordered sequence is syntactically a valid Modelica annotation, although there is no mechanism for defining an array of heterogeneous objects in Modelica.*\ ] These Icon, Diagram, and Documentation annotations are only allowed directly in classes (e.g. not on components or connections). The allowed annotations for a short class definition is the union of the allowed annotations in classes and on extends-clauses. Common Definitions ~~~~~~~~~~~~~~~~~~ .. raw:: latex \doublelabel{common-definitions} The following common definitions are used to define graphical annotations in the later sections. :: type DrawingUnit = Real(final unit="mm"); type Point = DrawingUnit[2] "{x, y}"; type Extent = Point[2] "Defines a rectangular area {{x1, y1}, {x2, y2}}"; The interpretation of "unit" is with respect to printer output in natural size (not zoomed). All graphical entities have a visible attribute which indicates if the entity should be shown. :: partial record GraphicItem Boolean visible = true; Point origin = {0, 0}; Real rotation(quantity="angle", unit="deg")=0; end GraphicItem; The origin attribute specifies the origin of the graphical item in the coordinate system of the layer in which it is defined. The origin is used to define the geometric information of the item and for all transformations applied to the item. All geometric information is given relative the origin attribute, which by default is {0, 0}. The rotation attribute specifies the rotation of the graphical item counter-clockwise around the point defined by the origin attribute. Coordinate Systems ^^^^^^^^^^^^^^^^^^ .. raw:: latex \doublelabel{coordinate-systems} Each of the layers has its own coordinate system. A coordinate system is defined by the coordinates of two points, the left (x1) lower (y1) corner and the right (x2) upper (y2) corner, where the coordinates of the first point shall be less than the coordinates of the second point [\ *a first quadrant coordinate system*\ ]. The attribute preserveAspectRatio specifies a constraint on the shape of components of the class. If preserveAspectRatio is true, changing the extent of components shall preserve the aspect ratio of the coordinate system of the class. The attribute initialScale specifies the default component size as initialScale times the size of the coordinate system of the class. An application may use a different default value of initialScale. The attribute grid specifies the spacing between grid points which can be used by tools for alignment of points in the coordinate system [\ *e.g. “snap-to-grid”*\ ]. Its use and default value is tool-dependent. :: record CoordinateSystem Extent extent; Boolean preserveAspectRatio=true; Real initialScale = 0.1; DrawingUnit grid[2]; end CoordinateSystem; [\ *Example*: *A coordinate system for an icon could for example be defined as:* :: CoordinateSystem(extent = {{-10, -10}, {10, 10}}); *i.e. a coordinate system with width 20 units and height 20 units.*\ ] The coordinate systems for the icon and diagram layers are by default defined as follows; where the array of GraphicsItem represents an ordered list of graphical primitives. :: record Icon "Representation of the icon layer" CoordinateSystem coordinateSystem(extent = {{-100, -100}, {100, 100}}); GraphicItem[:] graphics; end Icon; record Diagram "Representation of the diagram layer" CoordinateSystem coordinateSystem(extent = {{-100, -100}, {100, 100}}); GraphicItem[:] graphics; end Diagram; The coordinate system (including preserveAspectRatio) of a class is defined by the following priority: #. The coordinate system annotation given in the class (if specified). #. The coordinate systems of the first base-class where the extent on the extends-clause specifies a null-region (if any). Note that null-region is the default for base-classes, see . #. The default coordinate system CoordinateSystem(extent={{-100, -100}, {100, 100}}). Graphical Properties ^^^^^^^^^^^^^^^^^^^^ .. raw:: latex \doublelabel{graphical-properties} Properties of graphical objects and connection lines are described using the following attribute types. :: type Color = Integer[3](min=0, max=255) "RGB representation"; constant Color Black = zeros(3); type LinePattern = enumeration(None, Solid, Dash, Dot, DashDot, DashDotDot); type FillPattern = enumeration(None, Solid, Horizontal, Vertical, Cross, Forward, Backward, CrossDiag, HorizontalCylinder, VerticalCylinder, Sphere); type BorderPattern = enumeration(None, Raised, Sunken, Engraved); type Smooth = enumeration(None, Bezier); type EllipseClosure = enumeration(None, Chord, Radial); The LinePattern attribute Solid indicates a normal line, None an invisible line, and the other attributes various forms of dashed/dotted lines. The FillPattern attributes Horizontal, Vertical, Cross, Forward, Backward and CrossDiag specify fill patterns drawn with the line color over the fill color. The attributes HorizontalCylinder, VerticalCylinder and Sphere specify gradients that represent a horizontal cylinder, a vertical cylinder and a sphere, respectively. The gradient goes from line color to fill color. |image| The border pattern attributes Raised, Sunken and Engraved represent frames which are rendered in a tool-dependent way – inside the extent of the filled shape. The smooth attribute specifies that a line can be drawn as straight line segments (None) or using a spline (Bezier), where the line’s points specify control points of a quadratic Bezier curve. For lines with only two points, the smooth attribute has no effect. For lines with three or more points (P:sub:`1`, P\ :sub:`2`, …, P\ :sub:`n`), the middle point of each line segment (P:sub:`12`, P\ :sub:`23`, …, P\ :sub:`(n-1)n`) becomes the starting point and ending points of each quadratic Bezier curve. For each quadratic Bezier curve, the common point of the two line segment becomes the control point. For instance, point P\ :sub:`2` becomes the control point for the Bezier curve starting at P\ :sub:`12` and ending at P\ :sub:`23`. A straight line is drawn between the starting point of the line and the starting point of the first quadratic Bezier curve, as well as between the ending point of the line and the ending point of the last quadratic Bezier curve. In the illustration above, the square points (P:sub:`1`, P\ :sub:`2`, P\ :sub:`3,` and P\ :sub:`4`) represent the points that define the line, and the circle points (P:sub:`12`, P\ :sub:`23`, and P\ :sub:`34`) are the calculated middle points of each line segment. Points P\ :sub:`12`, P\ :sub:`2`, and P\ :sub:`23` define the first quadratic Bezier curve, and the points P\ :sub:`23`, P\ :sub:`3`, and P\ :sub:`34` define the second quadratic Bezier curve. Finally a straight line is drawn between points P\ :sub:`1` and P\ :sub:`12` as well as between P\ :sub:`34` and P\ :sub:`4`. The values of the EllipseClosure enumeration specify if and how the endpoints of an elliptical arc are to be joined (see Ellipse). :: type Arrow = enumeration(None, Open, Filled, Half); type TextStyle = enumeration(Bold, Italic, UnderLine); type TextAlignment = enumeration(Left, Center, Right); Filled shapes have the following attributes for the border and interior. :: record FilledShape "Style attributes for filled shapes" Color lineColor = Black "Color of border line"; Color fillColor = Black "Interior fill color"; LinePattern pattern = LinePattern.Solid "Border line pattern"; FillPattern fillPattern = FillPattern.None "Interior fill pattern"; DrawingUnit lineThickness = 0.25 "Line thickness"; end FilledShape; The extent/points of the filled shape describe the theoretical zero-thickness filled shape, and the actual rendered border is then half inside and half outside the extent. Component Instance ~~~~~~~~~~~~~~~~~~ .. raw:: latex \doublelabel{component-instance} A component instance can be placed within a diagram or icon layer. It has an annotation with a Placement modifier to describe the placement. Placements are defined in term of coordinate systems transformations: :: record Transformation Point origin = {0, 0}; Extent extent; Real rotation(quantity="angle", unit="deg")=0; end Transformation; The origin attribute defines the position of the component in the coordinate system of the enclosing class. The extent defines the position, size and flipping of the component, relative to the origin attribute. The extent is defined relative to the origin attribute of the component instance. Given an extent {{x1, y1}, {x2, y2}}, x2