which is the right syntax with find_system and blocktype

5 ビュー (過去 30 日間)
borzack
borzack 2022 年 6 月 17 日
編集済み: Fangjun Jiang 2022 年 6 月 22 日
Hello,
my model includes Gain and Weld Joint,
so
find_system(gcs,'SearchDepth',1,'BlockType','Gain')
ans =
1×1 cell array
{'untitled/Gain'}
while
find_system(gcs,'SearchDepth',1,'BlockType','sm_lib/Joints/Weld Joint')
ans =
0×1 empty cell array
someone know why?

回答 (2 件)

Fangjun Jiang
Fangjun Jiang 2022 年 6 月 20 日
Using 'sm_lib/Joints/Weld Joint' for block type is incorrect. To find it out, do it manually first. Select the block, run get_param(gcb,'BlockType')

Anshika Chourasia
Anshika Chourasia 2022 年 6 月 22 日
編集済み: Fangjun Jiang 2022 年 6 月 22 日
Hi,
The correct Block Type for Weld Joint is “SimscapeMultibodyBlock”.
Please use the following line of code for Weld Joint
find_system(gcs,'SearchDepth',1,'BlockType','SimscapeMultibodyBlock')
Please refer to the following link for more information related to the loading system and their blocks information:

カテゴリ

Help Center および File ExchangeSubsystems についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by