Brace indexing is not supported for variables of this type

5 次查看(过去 30 天)
Hi,
I want to use a SimulationInput object as an argument for "sim()" because it seems to work with simulink compiler.
The error
Error using SimulationClass/runSimulation (line 63)
Brace indexing is not supported for variables of this type.
Error in testclass (line 3)
myobj.runSimulation(); - Show complete stack trace
ocurrs when the method runSimulation is run.
I can't figure out exactly why this is happening. It does run fine when I use the modelname, that is a string: sim(modelName).
The "sim" command isn't shadowed. I get an error when I use it without any arguments as well.
Maybe something is wrong with my SimulationInput object. I added the output of SimIn.
% testclass.m
function testclass()
myobj = SimulationClass('Bremsscheibensimulation_Simulation', "AMS-TEST", "input_script"); %, user_data_struct);
myobj.runSimulation();
end
% SimulationClass.m
function runSimulation(obj)
obj.saveParamsToFile()
simIn = Simulink.SimulationInput(obj.simModelName);
simIn = simIn.loadVariablesFromMATFile(obj.simDataFile);
simIn = simIn.setModelParameter('StopTime', num2str(obj.fahrmanoeverObj.t_sim));
simIn = simulink.compiler.configureForDeployment(simIn);
obj.simOutput = sim(simIn);
end
% Output SimIn
simIn =
SimulationInput with properties:
ModelName: 'Bremsscheibensimulation_Simulation'
InitialState: [0×0 Simulink.op.ModelOperatingPoint]
ExternalInput: []
ModelParameters: [1×3 Simulink.Simulation.ModelParameter]
BlockParameters: [0×0 Simulink.Simulation.BlockParameter]
Variables: [1×120 Simulink.Simulation.Variable]
PreSimFcn: []
PostSimFcn: []
UserString: ''

采纳的回答

Christopher Wunder
移动:Cris LaPierre 2022-9-9
ok I figured it out by now, in case anyone has the same Problem:
I replaced "simIn = simulink.compiler.configureForDeployment(simIn)" by "simulink.compiler.configureForDeployment(simIn)". I don't know why it works, simulink.compiler.configureForDeployment seems to return the object, I can see the same output in the command window when initializing the SimulationInput object, but with a changed ModelParamter of course (and in different state it seems).
Anyway the examples on simulink.compiler.configureForDeployment in the documentation do also return the object, this might be a bit confusing.
  2 个评论
William Stokes
William Stokes 2022-9-9
移动:Cris LaPierre 2022-9-9
I had this exact problem and your solution has fixed it (I think!). But very weird, because you are correct it does go against all the documentation which is suggesting the simin object is immutable and should be written back to itself...weird. But thanks still!
Giuseppe Avallone
Giuseppe Avallone 2024-6-19
Hi,
I ran into the same identical problem and I really appreciate your answer.
The problem is that the instruction without assignation doesn't switch the model's acceleration mode (I mean, if the model is initially set to Normal it will stay in that mode). I have to manually switch to the Rapid Accelerator mode inside the .slx file.
However, the instruction
in = simulink.compiler.configureForDeployment(in);
consists of two statements:
in = in.setModelParameter('SimulationMode','Rapid');
in = in.setModelParameter('RapidAcceleratorUpToDateCheck','off');
If I comment the second line (or if I set it to 'on'), the error will be no longer displayed.
The weird thing is that I have used these instructions for other models and they work perfectly. It seems the problem does with the model, but I can't figure out where, since the error is too generic.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Run Individual Simulations 的更多信息

产品


版本

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by