sschdladvisor

Open Simscape HDL Workflow Advisor

Description

sschdladvisor(subsystem) opens the Simscape HDL Workflow Advisor for the subsystem within the model.

sschdladvisor(model) opens the Simscape HDL Workflow Advisor for the model.

Examples

collapse all

This example shows how to open advisor for the model and a subsystem inside a model.

Open Simscape HDL Advisor for a Model

For example: To open the advisor for the Boost Converter model, enter:

Modelname = 'sschdlexBoostConverterExample';
open_system(Modelname)
sschdladvisor(Modelname)
### Running Simscape HDL Workflow Advisor for <a href="matlab:(sschdlexBoostConverterExample)">sschdlexBoostConverterExample</a>
Updating Model Advisor cache...
Model Advisor cache updated. For new customizations, to update the cache, use the Advisor.Manager.refresh_customizations method.

Open Simscape HDL Advisor for a Subsystem

For example: To open the advisor for the Simscape_system block inside the Buck Converter model, enter:

Modelname = 'sschdlexBuckConverterExample';
Subsysname = 'sschdlexBuckConverterExample/Simscape_system';
load_system(Modelname)
open_system(Subsysname)
sschdladvisor(Subsysname)
### Running Simscape HDL Workflow Advisor for <a href="matlab:(sschdlexBuckConverterExample)">sschdlexBuckConverterExample</a>

Input Arguments

collapse all

Subsystem name or handle, specified as a character vector.

Data Types: char

Model name or handle, specified as a character vector.

Data Types: char

Introduced in R2018b