A reusable library subsystem is a subsystem included in a library that is configured for reuse. You must define a subsystem in a library and configure it for reuse to reuse the subsystem across models.
To reuse common functionality, you can include multiple instances of a subsystem:
Within a single model, which is a top model or part of model reference hierarchy
Across multiple referenced models in a model reference hierarchy
Across multiple top models that contain Model blocks
Across multiple top models that do not include Model blocks
The code generator uses checksums to determine reusability. There are cases when the code generator cannot reuse subsystem code.
For incremental code generation, if the reusable library subsystem changes, a rebuild of itself and its parents occurs. During the build, if a matching function is not found, a new instance of the reusable function is generated into the shared utilities folder. If a different matching function is found from previous builds, that function is used, and a new reusable function is not emitted.
For subsequent builds, unused files are not replaced or deleted from your folder. During development of a model, when many obsolete shared functions exist in the shared utilities folder, you can delete the folder and regenerate the code. If all instances of a reusable library subsystem are removed from a model reference hierarchy and you regenerate the code, the obsolete shared functions remain in the shared utilities folder until you delete them.
If a model changes such that the change might cause different generated code for the subsystem, a new reusable function is generated. For example, model configuration parameters that modify code comments might cause different generated code for the subsystem even if the reusable library subsystem did not change.
Embedded Coder users can generate code from a library that contains subsystems are configured for reuse. For more information, see Library-Based Code Generation for Reusable Library Subsystems.
The generated code of a reusable library subsystem is independent of the generated
code of the model. Code for the reusable library subsystem is generated to the shared
utility folder, slprj/
,
instead of the model reference hierarchy folders. The generated code for the supporting
types, which are generated to the target
/_sharedutils.h
file, are also in the shared
utilities folder.
For unique naming, reusable function names have a checksum appended to the reusable
library subsystem name. For example, the code and files for a subsystem,
SS1
, which links to a reusable library subsystem,
RLS
, might be:
Function name: RLS_mgdjlngd
File name: RLS_mgdjlnd.c
and
RLS_mgdjlnd.h
Set the Subsystem parameters as listed here:
Select Treat as an atomic unit.
On the Code Generation tab:
Set Function packaging to
Reusable function
.
Set the Function name options
and File name options parameters to one of the following combinations:
Set Function name options and
File name options to
Auto
.
Set Function name options to
Use subsystem name
and
File name options to
Use function name
.
Set Function name options to
User specified
and File
name options to Auto
or Use function name
.
Set Function name options to
User specified
and File
name options to User
specified
. Set the same value for the
Function name and
File name parameters.
In a model reference hierarchy, if an instance of the reusable library subsystem is in the top model, then on the Model Referencing pane of the Configuration Parameters dialog box, you must select the Pass fixed-size scalar root input by value for code generation parameter. If you do not select the parameter, a separate shared function is generated for the reusable library subsystem instance in the top model, and a reusable function is generated for instances in the referenced models.
If a reusable library subsystem is connected to the root Outport, reuse does not
happen with identical subsystems that are not connected to the root Outport. However,
you can set Pass reusable system outputs as to
Individual arguments
on the
Optimizations pane to make sure that reuse occurs between these
subsystems. This parameter requires an Embedded Coder® license.
For more information on creating a library, see Custom Libraries. For an example of creating a reusable library subsystem, see Generate Reusable Code for Subsystems Shared Across Models.
For a model to use a reusable library subsystem, you must configure the model
differently depending on whether the model is a reference model or top model. If the
subsystem is in a referenced model hierarchy, set the configuration parameter, Shared code placement to Auto
. Otherwise, for
each model that uses the subsystem, set the model configuration parameter
Shared code placement to Shared
location
.
If a reusable library subsystem uses a shared local data store and you configure default mapping for model data elements, leave the default storage class mapping for category Shared local data stores set to Default.
This example shows how to configure a reusable library subsystem
and generate a reusable function for a subsystem shared across referenced models.
The result is reusable code for the subsystem, which is generated to the shared
utility folder
(slprj/
).target
/_sharedutils
In the Simulink Editor, on the Simulation tab,
select New > Library. Select
Blank Library from the Simulink Start Page
window. Open rtwdemo_ssreuse
to copy and paste subsystem
SS1
into the Library Editor. This action loads the
variables for SS1
into the base workspace. Rename the
subsystem block to RLS
.
Click the Subsystem block and press Ctrl+U to view the
contents of subsystem RLS
.
To configure the subsystem, in the Library editor, right-click
RLS
. In the context menu, select Block
Parameters (Subsystem). In the Subsystem Parameters dialog
box, choose the following options:
Select Treat as an atomic unit.
On the Code Generation tab:
Set Function packaging to
Reusable function
.
Set Function name options to
User specified
and verify
that the Function name is set to
myfun
.
Set File name options to
Auto
.
Click Apply and OK.
Save the reusable library subsystem as ssreuselib
,
which creates a file, ssreuselib.slx
.
Create a model which includes one instance of RLS
from
ssreuselib
. Name this subsystem
SS1
. Add another subsystem and name it
SS2
. Name the model ex_model1
.
Create another model which includes one instance of RLS
from ssreuselib
. Name this subsystem
SS1
. Add another subsystem and name it
SS3
. Name the model ex_model2
.
Create a top model with two model blocks that reference
ex_model1
and ex_model2
. Save the
top model as ex_mdlref_ssreuse
.
With model ex_mdlref_ssreuse
open in the Simulink
Editor, on the C Code tab, click
Settings to open the Configuration Parameters
dialog box.
On the Solver pane, specify the
Type as
Fixed-step
.
On the Model Referencing pane, select Pass fixed-size scalar root inputs by value for code generation.
On the Code Generation > Report pane, select Create code generation report and Open report automatically.
On the Code Generation > Interface pane, set the
Shared code placement to
Shared location
.
On the Code Generation > Identifiers pane, set the
Maximum identifier length to
256
. This step is optional.
Click Apply and OK.
In the Simulink Editor, on the Modeling tab,
click Model Explorer to open the Model Explorer.
In the left navigation column of the Model Explorer, expand the
ex_mdlref_ssreuse
node.
Select the Configurations node below the
ex_mdlref_ssreuse
node. In the
Contents pane, right-click
Configuration and select Convert to
Configuration Reference
.
In the Convert Active Configuration to Reference dialog box, click
OK. This action converts the model configuration
set to a configuration reference, Simulink.ConfigSetRef
,
and creates the configuration reference object,
configSetObj
, in the base workspace.
In the left navigation column, right-click Reference
(Active) and select Propagate to Referenced
Models
.
In the Configuration Reference Propagation to Referenced Models dialog box, select the referenced models in the list. Click Propagate.
Now, the top model and referenced models use the same configuration reference,
Reference (Active)
, which points to a model configuration
reference object, configSetObj
, in the base workspace. When you
save your model, you also need to export the configSetObj
to a
MAT-file.
To generate code, in the Simulink Editor, press Ctrl+B. After the code is generated, the code generation report opens.
To view the code generation report for a referenced model, in the left
navigation pane, in the Referenced Models section,
select ex_model1
. The code generation report displays the
generated files for ex_model1
.
In the left navigation pane, expand the Shared files.
The code generator uses the reusable library subsystem name. The code for
subsystem SS1
is in myfun.c
and
myfun.h
.
Click Back and navigate to the
ex_model2
code generation report.
ex_model2
uses the same source code,
myfun.c
and myfun.h
, as the code
for ex_model1
. Your subsystem function and file names
will be different.