Simulation manager with initFcn

4 Ansichten (letzte 30 Tage)
Peter
Peter am 19 Feb. 2025
Verschoben: Fangjun Jiang am 25 Feb. 2025
I'd need to run multiple simulation runs with using Simulation Manager "Multiple Simulations". My simulik model uses InitFcn callback function to initializate the model via matlab m-script. There are params which needs to be change per multiple simulation runs.
As pictured, I'd need to Vd_hfi to be change per simulation runs, it s defined in "init_model" m-script and this variable is used in Simulink model block.
As of now I am not able to chne the params for different values per simulations runs....
Is it possible to achieve this and so how?

Antworten (1)

Fangjun Jiang
Fangjun Jiang am 19 Feb. 2025
'InitFcn' is executed before the simulation starts, that is probably the reason that your parameter values set in the multiple simulation are over-written.
Usually, you can move the function calls in 'InitFcn' to 'PreLoadFcn' or 'PostLoadFcn' if it is only to set up some parameter values. Then use Simulation Manager to set up all the parameter values that need to be different between each simulation.
  16 Kommentare
Fangjun Jiang
Fangjun Jiang am 25 Feb. 2025
Either remove these statements, or move the "init_model" to PreLoadFcn and set your own InitFcn.
Peter
Peter am 25 Feb. 2025
Verschoben: Fangjun Jiang am 25 Feb. 2025
moving to PreLoadFcn does not work

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Verification, Validation, and Test finden Sie in Help Center und File Exchange

Produkte


Version

R2024b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by