How to determine a broken connection in a test harness using a matlab script?

3 次查看(过去 30 天)
Hello,
I have a test harness for which interfaces are ever changing. So, I wish to automate the process of creating a test harness through matlab script. A situation occurs when inputs/outputs are removed and added in the model under test, the links are broken in the test harness as shown below in the snapshot.
MatlabQuestion.PNG
How can I determine the connectivity between blocks (subsystems in this case)? I tried 'PortConnectivity' but I think it only works for Inports and Outports. As the above diagram shows, what command can help me to get parameters to ensure connectivity of the subsystems?

回答(1 个)

Monika Jaskolka
Monika Jaskolka 2020-2-4
The following command will provide a list of line handles that are unconnected in the top-level of the model:
lines = find_system(gcs, 'SearchDepth', 1, 'Findall', 'on', 'Type', 'line', 'Connected', 'off')

类别

Help CenterFile Exchange 中查找有关 Test Harnesses 的更多信息

产品


版本

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by