Simulink.SubSystem.convertToModelReference

Convert subsystem to model reference

Description

example

Simulink.SubSystem.convertToModelReference(gcb,'UseConversionAdvisor',true) opens the Model Reference Conversion Advisor for the selected Subsystem block.

[tf,h] = Simulink.SubSystem.convertToModelReference(subsys,model) converts the specified subsystems to referenced models.

For each subsystem that the function converts, it:

  • Creates a model.

  • Copies the contents of the subsystem into the new model.

  • Updates any root-level input and output blocks and the configuration parameters of the model to match the compiled attributes of the original subsystem.

  • Copies the contents of the model workspace of the original model to the new model.

Before you use this function, load the model containing the subsystem.

example

[tf,h] = Simulink.SubSystem.convertToModelReference(subsys,model,Name,Value) specifies options using one or more name-value pair arguments.

Examples

collapse all

Open the f14 model.

open_system('f14');

In the f14 model, select the Controller subsystem output signal and click Log Signals.

In the Simulink® Editor, select the Controller subsystem. Open the Model Reference Conversion Advisor from the command window.

Simulink.SubSystem.convertToModelReference(gcb,'UseConversionAdvisor',true);

Perform the conversion using the advisor.

Convert the Bus Counter subsystem to a referenced model named bus_counter_ref_model.

open_system('sldemo_mdlref_conversion');
Simulink.SubSystem.convertToModelReference(...
   'sldemo_mdlref_conversion/Bus Counter', ...
   'bus_counter_ref_model', ...
   'AutoFix',true,...
   'ReplaceSubsystem',true,...
   'CheckSimulationResults',true);
### Successfully converted Subsystem block to Model block.

Convert the two subsystems with one command.

open_system('f14');
set_param(gcs,'SaveOutput','on','SaveFormat','Dataset');
set_param(gcs,'SignalResolutionControl','UseLocalSettings');
Simulink.SubSystem.convertToModelReference(...
{'f14/Controller','f14/Aircraft Dynamics Model'},...
{'controller_ref_model','aircraft_dynamics_ref_model'},...
'ReplaceSubsystem',true,...
'AutoFix',true,...
'CheckSimulationResults',true)

Input Arguments

collapse all

Subsystem names or handles, specified as a numeric array, character vector, cell array of character vectors, or string array.

For information on which subsystems you can convert, see Modify Referenced Models for Conditional Execution.

Data Types: double | char | string

Referenced model names, specified as a character vector, cell array of character vectors, or string array. Each model name must be 59 characters or less.

If you specify multiple subsystems to convert, specify the same number of referenced model names. Each model name corresponds to the specified subsystem, in the same order.

Data Types: char | string

Name-Value Pair Arguments

Specify optional comma-separated pairs of Name,Value arguments. Name is the argument name and Value is the corresponding value. Name must appear inside quotes. You can specify several name and value pair arguments in any order as Name1,Value1,...,NameN,ValueN.

Example: Simulink.SubSystem.convertToModelReference...(engineSubsys,engineModelRef,'ReplaceSubsystem',true)

Option to fix all conversion issues that can be fixed automatically, specified as the comma-separated pair consisting of 'AutoFix' and true or false.

If you set AutoFix to true, the function fixes all conversion issues that it can fix. For issues that the function cannot fix, the conversion process generates error messages that you address by modifying the model.

Note

If you set Force to true, then the function does not automatically fix conversion issues.

Data Types: logical

Option to complete conversion even with errors, specified as the comma-separated pair consisting of 'Force' and true or false.

If true, the function returns conversion errors as warnings and continues with the conversion without fixing the errors, even if you set AutoFix to true. The Force option allows you to use the function to do the initial steps of the conversion and then complete the conversion process yourself.

Data Types: logical

Option to copy code mappings from parent model to the new, converted model, specified as the comma-separated pair consisting of 'CopyCodeMappings' and true or false.

If true, the function copies the existing code mapping configurations from the parent model to the new, converted referenced model.

If false, the function does not copy the existing code mapping configurations from the parent model to the new, converted model.

Data Types: logical

Option to check simulation results before and after conversion, specified as the comma-separated pair consisting of 'CheckSimulationResults' and true or false.

Before performing the conversion:

If the difference between simulation results exceeds the tolerance level, the function displays a message.

Data Types: logical

Absolute signal tolerance for comparison, specified as the comma-separated pair consisting of 'AbsoluteTolerance' and a numeric scalar.

Use this option only if you set CheckSimulationResults to true.

Data Types: double

Relative signal tolerance for comparison, specified as the comma-separated pair consisting of 'RelativeTolerance' and a numeric scalar.

Use this option only if you set CheckSimulationResults to true.

Data Types: double

Name of file for storing conversion data, specified as the comma-separated pair consisting of 'DataFileName' and a character vector. You can specify an absolute or relative path.

You can save the conversion data in a MAT-file (default) or a MATLAB® file. If you use a .m file extension, the function serializes all variables to a MATLAB file.

By default, the function uses a file name consisting of the model name plus _conversion_data.mat.

Data Types: char

Option to replace Subsystem blocks with Model blocks, specified as the comma-separated pair consisting of 'ReplaceSubsystem' and true or false.

If you set the value to true, consider making a backup of the original model before you convert the subsystems. If you want to undo the conversion, having a backup makes it easier to restore the model.

If you set ReplaceSubsystem to true, the conversion action depends on whether you use the automatic fix options.

  • If you use the automatic fixes, then the conversion replaces the Subsystem block with a Model block unless the automatic fixes change the input or output ports. If the ports change, then the conversion includes the contents of the subsystem in a Model block that is inserted in the Subsystem block.

  • If you do not use the automatic fixes, then the conversion replaces the Subsystem block with a Model block.

Data Types: logical

Option to insert wrapper subsystem to preserve model layout, specified as the comma-separated pair consisting of 'CreateWrapperSubsystem' and true or false.

When you convert a subsystem to a referenced model, you can have the conversion process insert a wrapper subsystem to preserve the layout of a model. The subsystem wrapper contains the Model block from the conversion.

The conversion creates a wrapper subsystem automatically if the conversion modifies the Model block interface by adding ports.

Data Types: logical

Simulation mode for Model blocks, specified as the comma-separated pair consisting of 'SimulationModes' and 'Normal' or 'Accelerator'. The simulation mode setting applies to the Model blocks that reference the models that the conversion creates.

Data Types: char

Model reference targets to generate, specified as the comma-separated pair consisting of 'BuildTarget' and 'Sim' or 'Coder'.

  • 'Sim' — Model reference simulation target

  • 'Coder' — Code generation target

Data Types: char

Output Arguments

collapse all

True or false result, returned as 1 or 0 of data type logical.

A value of 1 indicates a successful conversion.

If you set Force to true, the function returns a value of 1 if the conversion completes. However, the simulation results can differ from the simulation results for the model before conversion.

Handles of the created Model blocks, returned as a numeric array.

Data Types: double

Tips

  • You cannot convert a parent subsystem and a child of that subsystem at the same time.

  • Specifying multiple subsystems to convert with one command can save time compared to converting each subsystem separately. The multiple subsystem conversion process compiles the model once.

  • If you specify multiple subsystems to convert, the conversion process attempts to convert each subsystem. Successfully converted subsystems produce referenced models, even if the conversions of other subsystems fail.

  • If you specify multiple subsystems, consider:

    • In the input arguments, setting 'Autofix', 'ReplaceSubsystem', and 'CheckSimulationResults' to true.

    • In the model, setting a short simulation time.

  • A data dictionary saves bus objects that it creates as part of the conversion process when both of these conditions exist:

    • The top model uses a data dictionary.

    • All changes to the top model are saved.

  • To maintain the behavior of a masked subsystem, perform these additional tasks:

    • For masked callbacks, icons, ports, and documentation, create a backup copy of the masked subsystem before converting it to a referenced model. After conversion, copy the content from the Mask Editor of the backup masked subsystem to the Mask Editor of the new Model block.

    • Replace mask parameters with model arguments (see Parameterize Instances of a Reusable Referenced Model).

    Note

    Referenced models do not support the functionality that you can achieve with mask initialization code to create masked parameters.

Compatibility Considerations

expand all

Not recommended starting in R2019a

Introduced in R2006a