Contenu principal

Real-Time Signal Instrumentation Workflows

R2026b

Instrumenting signals (adding signals to an instrument) eases workflows for visualizing signal data that real-time applications generate. Simulink® Real-Time™ user interfaces help you visualize instrumented signals by using:

There are programmatic options for collecting signal data that do not require modifications in your model, such as adding File Log blocks or marking signals for logging. These programmatic options include:

  • You can apply the addForFileLog function to add signals to an instrument in a Target object. The instrument transfers the signal data from the target computer to the development computer in the same manner and with the same controls (for example, AutoImportFileLog option for the start function) as when file log data is collected through a File Log block.

  • You can apply the addForSDI function to add signals to an instrument in a Target object. When added to a Target object, the instrument transfers the signal data from the target computer to the development computer in the same manner and with the same controls (for example, the startRecording and stopRecording functions) as streaming signal data. The streaming data is available in the Simulation Data Inspector during the simulation run, and the data is not saved on the target computer.

  • You can apply the addForMATLAB function to add signals to an instrument in a Target object. When added to a Target object, the instrument transfers the signal data from the target computer to the development computer in the same manner and with the same controls as streaming signal data; same as with the addForSDI function. The difference is that the streaming data is accessible through apps written in MATLAB rather than being accessible through the Simulation Data Inspector.

Tip

These programmatic options for signal logging and streaming support are dynamic. You can modify signal logging and streaming selections in your real-time application without re-building your model. If you prefer, you can use the Simulink Real-Time Instrument Viewer user interface to view and modify instruments for your real-time applications.

These steps show how to add a signal to an instrument then add the instrument to a Target object for file logging.

  1. Create target object and connect to target computer. Open model and configure model for target computer. Build model.

    tg = slrealtime;
    connect(tg);
    model = 'slrt_ex_osc';
    openExample(model);
    modelSTF = getSTFName(tg);
    set_param(model,"SystemTargetFile",modelSTF);
    slbuild(model);
  2. Create instrument object and add signal from real-time application.

    tgInst = slrealtime.Instrument(model);
    addSignal(tgInst,'SigGen');
  3. Add an instrument to the Target object for file logging.

    addForFileLog(tg.Instruments,tgInst);
  4. Load and run the real-time application. After the simulation runs, import the file log data to the development computer and visualize signals in the Simulation Data Inspector.

See Also

| | | | | | | | | | | | |

Topics