Is there a way to disable the visualization of a Simscape Multibody simulation in the Mechanics Explorer using a command?
38 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Katrin_S
el 4 de Abr. de 2019
Comentada: Brian Hong
el 4 de Mayo de 2020
When I want to switch off the visualization of a Simscape Multibody simulation, I have to uncheck the box "Open Mechanics Explorer on model update or simulation". I want to do that using a command or a parameter, so that I don't have to open Simulink and check or uncheck the box.
The only solution I found so far is to create a copy of my Configuration Parameter Set where the visualization is turned off and switch to the different Configuration Parameter Set by
setActiveConfigSet('mymodel', 'Copy_of_Configuration1_without_visualization')
This works, but the problem here is that this changes the .slx file everytime I do that which is not really convenient, especially when working with git.
0 comentarios
Respuesta aceptada
Brian Hong
el 1 de Mayo de 2020
>> set_param(<model name>,'SimMechanicsOpenEditorOnUpdate','off')
2 comentarios
Brian Hong
el 4 de Mayo de 2020
You could try not saving the model as in this example
or using the sim command with the model parameter
>> paramNameValStruct.SimMechanicsOpenEditorOnUpdate = 'off';
>> simOut = sim(<model name>,paramNameValStruct)
to avoid changing the SLX.
Más respuestas (0)
Ver también
Categorías
Más información sobre Simscape en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!