- You can only set variables that have the "variability" attribute marked as "fixed" or "tunable".
- The value for "fixed" variables can only be changed before the start of every simulation
How to set parameters in an FMU from Matlab Simulink ?
23 views (last 30 days)
Show older comments
We have an FMU developed using MSVC 2022 for Windows x64. The FMU imports in Simulink nicely and I am able to see the I/O ports as intended. I am also able to access the inputs set from the environment using assigning a constant / signal generator to the input ports.
I would now like to also set the parameters from the workspace. I have tried using several of the callback functions at the model (Simulink) level as well as the block level. However, I am still not able to see the supplied values affect the parameter values inside the FMU. I am testing this by logging the output in various functions. I only want to set the parameters once at the start of simulation and they are defined like so in the modelDescription.xml file:
<Float64 name="LP" valueReference="1" causality="parameter" variability="fixed" initial="exact" description="POS_THICKNESS" declaredType="Length" start=".1320e-3" />
While the default value is already set, we would like the end user to be able to configure it once for every run.
Any guidance with how to debug this would be appreciated.
0 Comments
Accepted Answer
Sourabh
on 14 Jun 2024
Edited: Sourabh
on 14 Jun 2024
Hey Chintan,
You should be able to set the parameters using the following MATLAB commands:
pathToFMUBlock = 'modelName/blockName';
h = getSimulinkBlockHandle(pathToFMUBlock, true);
set_param(h, 'variable_name', 'value');
A couple of things to node:
Here are a few helpful documentation pages:
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!