How do I use the ADD_LINE command with SimMechanics blocks?

6 visualizaciones (últimos 30 días)
The ADD_LINE command can be used to connect Simulink blocks from the command line. However, this command basically assumes that there are 'output' ports and 'input' ports. In SimMechanics this is not the case, and specifying connections in the normal way does not work.

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 18 de Nov. de 2016
SimMechanics models can be created from the MATLAB Command Line, but a special syntax is used to represent the ports. The ports should be described as 'LConn<number>' and 'RConn<number>', where 'number' indicates the position on the block. The following example creates a small sample model with two connected blocks:
 
new_system
open_system(gcs)
add_block('mblibv1/Joints/Revolute',[gcs,'/Revolute'])
add_block('mblibv1/Joints/Revolute',[gcs,'/Revolute1'])
set_param(gcb,'Position',(get_param(gcb,'Position')+[0 60 0 60]))
add_line(gcs,'Revolute/RConn1','Revolute1/LConn1')

Más respuestas (1)

Steve Miller
Steve Miller el 1 de Feb. de 2018
We have posted an example on the MATLAB Central File Exchange that shows how to use MATLAB commands to add Simscape blocks and connect them.
To connect a block to an existing line, simply use add_line() to connect the new block to any of the ports that are already connected to that line. The above example connects the Solver Configuration block to two other blocks which are already connected.
Thanks,
--Steve

Categorías

Más información sobre Programmatic Model Editing en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by