Modelica.Blocks.Interfaces.Adaptors

Obsolete package with components to send signals to a bus or receive signals from a bus (only for backward compatibility)

Information


The components of this package should no longer be used. They are only provided for backward compatibility. It is much more convenient and more powerful to use "expandable connectors" for signal buses, see example BusUsage.

Extends from Modelica.Icons.Package (Icon for standard packages).

Package Content

NameDescription
Modelica.Blocks.Interfaces.Adaptors.SendReal SendReal Obsolete block to send Real signal to bus
Modelica.Blocks.Interfaces.Adaptors.SendBoolean SendBoolean Obsolete block to send Boolean signal to bus
Modelica.Blocks.Interfaces.Adaptors.SendInteger SendInteger Obsolete block to send Integer signal to bus
Modelica.Blocks.Interfaces.Adaptors.ReceiveReal ReceiveReal Obsolete block to receive Real signal from bus
Modelica.Blocks.Interfaces.Adaptors.ReceiveBoolean ReceiveBoolean Obsolete block to receive Boolean signal from bus
Modelica.Blocks.Interfaces.Adaptors.ReceiveInteger ReceiveInteger Obsolete block to receive Integer signal from bus


Modelica.Blocks.Interfaces.Adaptors.SendReal Modelica.Blocks.Interfaces.Adaptors.SendReal

Obsolete block to send Real signal to bus

Modelica.Blocks.Interfaces.Adaptors.SendReal

Information


Obsolete block that was previously used to connect a Real signal to a signal in a connector. This block is only provided for backward compatibility.

It is much more convenient and more powerful to use "expandable connectors" for signal buses, see example BusUsage.

Connectors

TypeNameDescription
output RealOutputtoBusOutput signal to be connected to bus
input RealInputuInput signal to be send to bus

Modelica definition

block SendReal "Obsolete block to send Real signal to bus"

  RealOutput toBus "Output signal to be connected to bus";
  RealInput u "Input signal to be send to bus";
equation 
  toBus = u;
end SendReal;

Modelica.Blocks.Interfaces.Adaptors.SendBoolean Modelica.Blocks.Interfaces.Adaptors.SendBoolean

Obsolete block to send Boolean signal to bus

Modelica.Blocks.Interfaces.Adaptors.SendBoolean

Information


Obsolete block that was previously used to connect a Boolean signal to a signal in a connector. This block is only provided for backward compatibility.

It is much more convenient and more powerful to use "expandable connectors" for signal buses, see example BusUsage.

Connectors

TypeNameDescription
output BooleanOutputtoBusOutput signal to be connected to bus
input BooleanInputuInput signal to be send to bus

Modelica definition

block SendBoolean "Obsolete block to send Boolean signal to bus"

  BooleanOutput toBus "Output signal to be connected to bus";
  BooleanInput u "Input signal to be send to bus";
equation 
  toBus = u;
end SendBoolean;

Modelica.Blocks.Interfaces.Adaptors.SendInteger Modelica.Blocks.Interfaces.Adaptors.SendInteger

Obsolete block to send Integer signal to bus

Modelica.Blocks.Interfaces.Adaptors.SendInteger

Information


Obsolete block that was previously used to connect an Integer signal to a signal in a connector. This block is only provided for backward compatibility.

It is much more convenient and more powerful to use "expandable connectors" for signal buses, see example BusUsage.

Connectors

TypeNameDescription
output IntegerOutputtoBusOutput signal to be connected to bus
input IntegerInputuInput signal to be send to bus

Modelica definition

block SendInteger "Obsolete block to send Integer signal to bus"

  IntegerOutput toBus "Output signal to be connected to bus";
  IntegerInput u "Input signal to be send to bus";
equation 
  toBus = u;
end SendInteger;

Modelica.Blocks.Interfaces.Adaptors.ReceiveReal Modelica.Blocks.Interfaces.Adaptors.ReceiveReal

Obsolete block to receive Real signal from bus

Modelica.Blocks.Interfaces.Adaptors.ReceiveReal

Information


Obsolete block that was previously used to connect a Real signal in a connector to an input of a block. This block is only provided for backward compatibility.

It is much more convenient and more powerful to use "expandable connectors" for signal buses, see example BusUsage.

Connectors

TypeNameDescription
input RealInputfromBusTo be connected with signal on bus
output RealOutputyOutput signal to be received from bus

Modelica definition

block ReceiveReal "Obsolete block to receive Real signal from bus"

  RealInput fromBus "To be connected with signal on bus";
  RealOutput y "Output signal to be received from bus";
equation 
  y = fromBus;
end ReceiveReal;

Modelica.Blocks.Interfaces.Adaptors.ReceiveBoolean Modelica.Blocks.Interfaces.Adaptors.ReceiveBoolean

Obsolete block to receive Boolean signal from bus

Modelica.Blocks.Interfaces.Adaptors.ReceiveBoolean

Information


Obsolete block that was previously used to connect a Boolean signal in a connector to an input of a block. This block is only provided for backward compatibility.

It is much more convenient and more powerful to use "expandable connectors" for signal buses, see example BusUsage.

Connectors

TypeNameDescription
input BooleanInputfromBusTo be connected with signal on bus
output BooleanOutputyOutput signal to be received from bus

Modelica definition

block ReceiveBoolean 
  "Obsolete block to receive Boolean signal from bus"

  BooleanInput fromBus "To be connected with signal on bus";
  BooleanOutput y "Output signal to be received from bus";
equation 
  y = fromBus;
end ReceiveBoolean;

Modelica.Blocks.Interfaces.Adaptors.ReceiveInteger Modelica.Blocks.Interfaces.Adaptors.ReceiveInteger

Obsolete block to receive Integer signal from bus

Modelica.Blocks.Interfaces.Adaptors.ReceiveInteger

Information


Obsolete block that was previously used to connect an Integer signal in a connector to an input of a block. This block is only provided for backward compatibility.

It is much more convenient and more powerful to use "expandable connectors" for signal buses, see example BusUsage.

Connectors

TypeNameDescription
input IntegerInputfromBusTo be connected with signal on bus
output IntegerOutputyOutput signal to be received from bus

Modelica definition

block ReceiveInteger 
  "Obsolete block to receive Integer signal from bus"

  IntegerInput fromBus "To be connected with signal on bus";
  IntegerOutput y "Output signal to be received from bus";
equation 
  y = fromBus;
end ReceiveInteger;

Automatically generated Fri Nov 12 16:27:37 2010.