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');
Fangjun Jiang
Fangjun Jiang 2020년 1월 17일
add_block('nesl_utility/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