This example shows how to send, receive, and visualize messages. The example also shows how to use Simulation Data Inspector, Animation, and Storage Inspector to understand how messages flow in your model.
The SimpleMessagesModel contains these blocks:
Sine Wave — The signal source. The Sample time parameter of the block is set to 0.1
.
Send — Converts data signals and send messages. The specified value for the Sample time parameter of the Sine Wave block determines the rate at which the Send block sends messages. Therefore, the Send block sends one message every 0.1
simulation time.
Queue — Stores messages. Observe the message line between the Send block and the Queue block. The default capacity of the queue is 16
, which means the Queue block can store at most 16
messages. The default message sorting behavior is LIFO
, which means incoming messages are sorted based on last-in-first-out policy. By default, the Overwrite the oldest element if queue is full check box is selected. When the queue is full, an incoming message overwrites the oldest message in the queue. For more information about using the Queue block, see Use a Queue Block to Manage Messages.
Receive — Receives messages and converts them to signal data. In the block, Sample time parameter is set to 0.1
. The Receive block receives a message every 0.1 simulation time.
Scope — Visualizes messages received by the Receive block.
In the model, data logging is enabled for the signal and message lines among Sine Wave, Send, Queue, Receive, and Scope blocks.
Simulate the SimpleMessagesModel and observe from the Simulation Data Inspector that:
The Sine Wave block generates the sine wave signal (green).
Every 0.1
simulation time, Send block converts the value of the signal to a message and sends it to the Queue block. Simulation Data inspector displays messages as stem plots. Observe the Simulation Data Inspector displaying sent messages (purple).
The Queue block sends messages to the Receive block (blue).
Receive block output is the reconstructed sine wave signal (orange).
You can observe the message flow between model components by using Animation to animate the model. You can specify the speed of the animation as Slow
, Medium
, or Fast
. A fourth option None
disables the model animation.
In the model window right-click and select Animation Speed, and set its speed to Slow
. Simulate the model again. Observe the highlighted message lines representing the message flow between the blocks.
Animation highlights message lines and Simulink function calls based on event rather than time passed. In one simulation time, more than one message flow or Simulink function call event can be highlighted.
Pause the animation. In the Simulink Toolstrip, in the Debug tab, click Pause. Observe that the last highlighted message line is highlighted in violet.
The Storage Inspector allows you to visualize the details of the stored messages in Queue block. When you pause the simulation, the Storage Inspector magnifying glass icon appears on the Queue block. To open the Storage Inspector, click the magnifying glass.
The Storage Inspector does not show any stored messages because messages arriving at the Queue block are simultaneously received by the Receive block at the same simulation time.
To create a scenario with stored messages, stop the simulation and change the Sample time parameter of the Receive block to 0.5
. Now the Send block sends one message every 0.1
simulation time, but the Receive block receives messages every 0.5
simulation time. This causes a backlog of messages that are stored in the Queue block.
Simulate the model again with animation speed set to Slow
, and pause the simulation to check the status in the Storage Inspector. An entity in the Storage Inspector represents stored elements in the Queue block, in this case, messages. Storage Inspector lists the messages stored in the Queue block with their ID and data value carried by each message.
To display message data as port value labels, right-click the message line emerging from a block and select Show Value Label of Selected Port.
In the example below, the port values are displayed for the message line connecting the Send block to the Queue block.
If a message carries data as a bus object, you can also select the elements to be displayed as the port values.
The SimpleMessagesPortValueModel
is a variation of the SimpleMessagesModel
where the input to the Send block comes from a Bus Creator block. In this example, a bus object Data_message
is created with two elements, sinewave
and constant
.
To open this model, enter:
open_system('SimpleMessagesPortValueModel');
Right-click the message line emerging from the Send block, click Show Value Label of Selected Port
, and select constant.
Only the values of the constant signal are displayed as port values.
If the message transmission stops on a message line, the port value display keeps displaying the last message payload value.
Hit Crossing Probe | Queue | Receive | Send | Sequence Viewer | Sine Wave