Simulink: Can't change model workspace variables using setVariable

9 vues (au cours des 30 derniers jours)
Paul
Paul le 31 Oct 2022
Commenté : Paul le 29 Déc 2022
I'm running a Simulink model programmatically using parsim. I pass input data into a series of SimulationInput objects using the setVariable function, but when I run my model using parsim the model workspace isn't using the values I passed in. What gives?
for index = 1 : length(inputs)
simIn = Simulink.SimulationInput('MySimulation');
simIn = setVariable(simIn, "RefractTimeConstant",simulationParameters.RefractTimeConstant(index),"Workspace",'MySimulation');
simulationInputConfigs(end+1) = simIn;
end
.
.
.
simOuts = parsim(simulationInputConfigs, 'ShowSimulationManager', 'on');
  4 commentaires
Björn Erik
Björn Erik le 29 Déc 2022
Modifié(e) : Björn Erik le 29 Déc 2022
Did you find a solution to this? I have the exact same problem.. I'm trying to use the variable in a matlab-script in my simulinkmodel. Maybe that is the problem?
Paul
Paul le 29 Déc 2022
I'm not the OP, just have the same username.
I ran this code in 2022a in the Live Editor and it worked fine. Note that I'm using sim, not parsim, though the OP said he had the same problem with sim and parsim. Also, I wan't sure how the variable simulationInputConfigs was initialized, so I didn't use it. The model mysim is just a Constant 1, sent through a Gain, where the Gain parameter is theGain (I hope that's clear). Also, in mysim I do not have the variable theGain defined in the model workspace. The output of the Gain block goes To Workspace. The end result is that y had the values 1:5, as expected.
Gains = 1:5;
for index = 1 : 5
simIn(index) = Simulink.SimulationInput('mysim');
simIn(index) = setVariable(simIn(index), "theGain",Gains(index),"Workspace",'mysim');
% simulationInputConfigs(end+1) = simIn;
end
% check output for the expected result.
simOuts = sim(simIn, 'ShowSimulationManager', 'on');
for ii = 1:5
y(ii) = simOuts(ii).y.Data(end);
end

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Simulink Functions dans Help Center et File Exchange

Produits


Version

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by