Guy on Simulink

Simulink & Model-Based Design

Initializing Parameters

Simulink models often use parameters from the MATLAB base workspace.  However, Simulink does not save the MATLAB base workspace with the model.  This leads me to the following question: How do you initialize the workspace for your simulation?

Simulink Demos

Most Simulink Demos initialize the base workspace before they are loaded.  Let’s take a look at f14.mdl:

Simulink F14 model uses MATLAB expressions in Gain blocks.

In the F14 model, you see gain blocks with parameters like Zw, Mw, Mq and 1/Uo.  Simulink evaluates those MATLAB expressions in the base workspace during initialization of the simulation.

MATLAB Workspace with variables from the F14 demo model.

You can register model callbacks that run when you perform different actions on the model.  In this example, f14.mdl has a PreLoadFcn that runs a script to initializes the workspace.  You can see the model callbacks by opening the Model Properties from the File menu.

Model Properties dialog box for F14 demo model.

The model pre-load function executes before the model is actually loaded.  If you only need to initialize a few variables for your model, you can enter the MATLAB expressions directly in the pre-load function callback.  The F14 model calls the M-file script f14dat.m.

The F14 demo model initializes the workspace with the f14dat.m script.

If I am tweaking variables in my model, I like to change them directly in the workspace browser, or at the command line.  The pre-load function is a good place for initializing variables because it only runs the first time the model is loaded.  This allows you to change the variables for the current session without modifying the initialization code.

Other techniques for initialization?

How do you go from the blinking MATLAB cursor to a fully initialized environment?  Leave a comment here and share your model initialization tips.

|
  • print

Comments

To leave a comment, please click here to sign in to your MathWorks Account or create a new one.