This package contains the bus definitions needed for the BusUsage example.
Extends from Modelica.Icons.InterfacesPackage (Icon for packages containing interfaces).
Name | Description |
---|---|
ControlBus | Control bus that is adapted to the signals connected to it |
SubControlBus | Sub-control bus that is adapted to the signals connected to it |
This connector defines the "expandable connector" ControlBus that is used as bus in the BusUsage example. Note, this connector contains "default" signals that might be utilized in a connection (the input/output causalities of the signals are determined from the connections to this bus).
Extends from Modelica.Icons.SignalBus (Icon for signal bus).
Type | Name | Description |
---|---|---|
AngularVelocity | realSignal1 | First Real signal (angular velocity) [rad/s] |
Velocity | realSignal2 | Second Real signal [m/s] |
Integer | integerSignal | Integer signal |
Boolean | booleanSignal | Boolean signal |
SubControlBus | subControlBus | Combined signal |
expandable connector ControlBus "Control bus that is adapted to the signals connected to it" extends Modelica.Icons.SignalBus; import SI = Modelica.SIunits; SI.AngularVelocity realSignal1 "First Real signal (angular velocity)"; SI.Velocity realSignal2 "Second Real signal"; Integer integerSignal "Integer signal"; Boolean booleanSignal "Boolean signal"; SubControlBus subControlBus "Combined signal";end ControlBus;
This connector defines the "expandable connector" SubControlBus that is used as sub-bus in the BusUsage example. Note, this is an expandable connector which has a "default" set of signals (the input/output causalities of the signals are determined from the connections to this bus).
Extends from Modelica.Icons.SignalSubBus (Icon for signal sub-bus).
Type | Name | Description |
---|---|---|
Real | myRealSignal | |
Boolean | myBooleanSignal |
expandable connector SubControlBus "Sub-control bus that is adapted to the signals connected to it" extends Modelica.Icons.SignalSubBus; Real myRealSignal; Boolean myBooleanSignal;end SubControlBus;