How can I iteratively create blocks in simulink/simscape and populate them with variables?

2 次查看(过去 30 天)
I'm trying to design a program to create multiple "Repeating Sequence Interpolated" blocks as well as "Saturation Dynamic" blocks. The number created, the data used to create the sequences and minima/maxima, and the names of the blocks are all determined in an external .csv or .txt file. The goal is to use the sequences to control the joints of an imported Solidworks assembly. I already know how to import the model and the data, but I'm not sure how to iteratively create the blocks. How can I do this?
%pseudocode
%import t, time array
%import m, matrix of data for the joints
%import n, number of sequences needed
%for i:1:n
% create arr, temporary array of position data for column i of m
% create Repeating Sequence Interpolated (RSI) block that references t and arr
% create Saturation Dynamic (SD) block and constant blocks to limit range of signal
% connect constants, RSI, and SD blocks
%end for

采纳的回答

Fangjun Jiang
Fangjun Jiang 2020-1-17
What you need are functions like add_block(), add_line(), set_param()
Follow examples in this section of the document "Programmatic Model Editing"
https://www.mathworks.com/help/releases/R2019b/simulink/programmatic-modeling.html
  2 个评论
Isaac Friedman
Isaac Friedman 2020-1-17
This is exactly what I was looking for, thank you! Can it also be used to add simscape blocks? I attempted the below code but MATLAB thros an error saying the block doesn't exist.
add_block('simscape/Foundation Library/Utilities/Simulink-PS Converter','DrawbotWithMass/C1');

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Simscape Multibody 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by