How to set parameters in an FMU from Matlab Simulink ?

23 visualizaciones (últimos 30 días)
Chintan
Chintan el 14 de Jun. de 2024
Comentada: Chintan el 15 de Jun. de 2024
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.

Respuesta aceptada

Sourabh
Sourabh el 14 de Jun. de 2024
Editada: Sourabh el 14 de Jun. de 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:
  • 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
Here are a few helpful documentation pages:
  1. https://www.mathworks.com/help/simulink/slref/set_param.html
  2. https://www.mathworks.com/help/simulink/ug/parameter-values-and-specification-methods.html
  1 comentario
Chintan
Chintan el 15 de Jun. de 2024
@Sourabh Thank you for your response. This worked! I had to set the FMU name explicitly to be able to find the handle for, and open_system() and find_system() helped to find the pathToFMUBlock value.
Do you know if this approach can be extended to set the inputs to the FMU block programatically?
Thanks

Iniciar sesión para comentar.

Más respuestas (0)

Productos


Versión

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by