This package contains the "actual" default bus definitions needed for the BusUsage example. The bus definitions in this package are the default definitions shown in the bus menu when connecting a signal to an expandable connector (here: ControlBus or SubControlBus). Usually, the connectors of this package should not be utilized by a user.
Name | Description |
---|---|
StandardControlBus | Used to build up the standard control bus (do not use this connector) |
StandardSubControlBus | Used to build up the standard sub-control bus (do not use this connector) |
This connector is used to show default signals that might be added to the ControlBus.
Extends from Modelica.Blocks.Examples.BusUsage_Utilities.Interfaces.ControlBus (Empty control bus that is adapted to the signals connected to it).
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 |
StandardSubControlBus | subControlBus | Combined signal |
expandable connector StandardControlBus "Used to build up the standard control bus (do not use this connector)" extends Modelica.Blocks.Examples.BusUsage_Utilities.Interfaces.ControlBus; 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"; StandardSubControlBus subControlBus "Combined signal";end StandardControlBus;
This connector is used to show default signals that might be added to the SubControlBus.
Extends from Modelica.Blocks.Examples.BusUsage_Utilities.Interfaces.SubControlBus (Empty sub-control bus that is adapted to the signals connected to it).
Type | Name | Description |
---|---|---|
Real | myRealSignal | |
Boolean | myBooleanSignal |
expandable connector StandardSubControlBus "Used to build up the standard sub-control bus (do not use this connector)" extends Modelica.Blocks.Examples.BusUsage_Utilities.Interfaces.SubControlBus; Real myRealSignal; Boolean myBooleanSignal;end StandardSubControlBus;