This package contains definitions for the graphical layout of components which may be used in different libraries. The icons can be utilized by inheriting them in the desired class using "extends" or by directly copying the "icon" layer.
Copyright © 1998-2009, Modelica Association and DLR.
This Modelica package is free software; it can be redistributed and/or modified under the terms of the Modelica license, see the license conditions and the accompanying disclaimer here.
Name | Description |
---|---|
Info | Icon for an information class |
Library | Icon for library |
Library2 | Icon for library where additional icon elements shall be added |
Example | Icon for an example model |
Function | Icon for a function |
Record | Icon for a record |
TypeReal | Icon for a Real type |
TypeInteger | Icon for an Integer type |
TypeBoolean | Icon for a Boolean type |
TypeString | Icon for a String type |
TranslationalSensor | Icon representing translational measurement device |
RotationalSensor | Icon representing rotational measurement device |
GearIcon | Icon for gearbox |
MotorIcon | Icon for electrical motor |
SignalBus | Icon for signal bus |
SignalSubBus | Icon for signal sub-bus |
ObsoleteModel | Icon for an obsolete model (use only for this case) |
type TypeReal "Icon for a Real type" extends Real; end TypeReal ;
type TypeInteger "Icon for an Integer type" extends Integer; end TypeInteger ;
type TypeBoolean "Icon for a Boolean type" extends Boolean; end TypeBoolean ;
type TypeString "Icon for a String type" extends String; end TypeString ;
This icon is designed for an information class.
partial model Info "Icon for an information class"end Info;
This icon is designed for an Example package, i.e. a package containing executable demo models.
partial model Example "Icon for an example model"end Example;
This icon is designed for a function
partial function Function "Icon for a function"end Function;
This icon is designed for a record
partial record Record "Icon for a record"end Record;
This icon is designed for a translational sensor model.
partial model TranslationalSensor "Icon representing translational measurement device"end TranslationalSensor;
This icon is designed for a rotational sensor model.
partial model RotationalSensor "Icon representing rotational measurement device"end RotationalSensor;
This icon is designed for a gearbox model.
partial model GearIcon "Icon for gearbox"end GearIcon;
This icon is designed for an electrical motor model.
partial model MotorIcon "Icon for electrical motor"end MotorIcon;
This icon is designed for a signal bus connector.
connector SignalBus "Icon for signal bus"end SignalBus;
This icon is designed for a sub-bus in a signal connector.
connector SignalSubBus "Icon for signal sub-bus"end SignalSubBus;
This partial model is intended to provide a default icon for an obsolete model that will be removed from the corresponding library in a future release.
partial model ObsoleteModel "Icon for an obsolete model (use only for this case)"end ObsoleteModel;