setModelParameter
Configure model parameter for code and calibration file (a2l) generation
Since R2020b
Description
setModelParameter(
configures the specified model parameter for code and calibration file (a2l) generation. Use this function to map
the specified model parameter to the storage class and storage class property settings that the code generator
uses to produce C code. Or, set the calibration access for the parameter.myCodeMappingObj
,modelParameter
,Name,Value
)
Examples
Configure Storage Class for Model Parameter
In the model code mappings for model
rtwdemo_configrpinterface
, set the storage class for model parameter
K1
to ExportedGlobal
.
open_system('rtwdemo_configrpinterface'); cm = coder.mapping.api.get('rtwdemo_configrpinterface'); setModelParameter(cm,'K1','StorageClass','ExportedGlobal');
Configure Storage Class for Model Parameters in Model to Model default
In the model code mappings for model
rtwdemo_configrpinterface
, set the storage class for model parameters
throughout the model to Model default
.
open_system('rtwdemo_configrpinterface'); cm = coder.mapping.api.get('rtwdemo_configrpinterface'); paramHandles = find(cm,'ModelParameters') setModelParameter(cm,paramHandles,'StorageClass','Model default');
Configure Storage Class for Model Parameters
In the model code mappings for model
rtwdemo_configrpinterface
, set the storage class for model parameters
Table1
and Table2
to
ExportedGlobal
.
open_system('rtwdemo_configrpinterface'); cm = coder.mapping.api.get('rtwdemo_configrpinterface'); setModelParameter(cm,'Table1','StorageClass','ExportedGlobal',... 'Identifier','mp_Table1'); setModelParameter(cm,'Table2','StorageClass','ExportedGlobal',... 'Identifier','mp_Table2');
Configure Calibration Properties for Model Parameter
From the model code mappings for model
rtwdemo_configrpinterface
, set the calibration properties configured
for the mode parameter argument LOWER
.
open_system('rtwdemo_configrpinterface'); cm = coder.mapping.api.get('rtwdemo_configrpinterface'); setModelParameter(cm,'LOWER','Export',true); setModelParameter(cm,'LOWER','CalibrationAccess','Calibration'); setModelParameter(cm,'LOWER','CompuMethod','CM_param'); setModelParameter(cm,'LOWER','DisplayIdentifier','param_lower'); setModelParameter(cm,'LOWER','Format','%4.2');
Input Arguments
myCodeMappingObj
— Code mapping object
CodeMapping
object
Code mapping object (model code mappings) returned by a call to function
coder.mapping.api.get
.
Example: myCM
modelParameter
— Name of model parameter
character vector | string | cell array of character vectors | cell array of string scalars
Name of the model workspace parameter to configure.
Example: 'Table1'
Data Types: char
| string
Name-Value Arguments
Example: 'StorageClass' 'ExportedGlobal'
Specify 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 as Name1,Value1,…,NameN,ValueN
. The
order of the name and value pair arguments does not matter.
StorageClass
— Name of storage class
Auto
| Dictionary default
| ExportedGlobal
| ImportedExtern
| ImportedExternPointer
| Model default
Storage class to set for the specified model parameter. The name of a predefined storage class or storage class that is defined in the Embedded Coder Dictionary associated with the model. See Configure Parameters for C Code Generation.
Identifier
— Name of variable
character vector | string scalar
Name for the variable that represents the model parameter in the generated code.
Data Types: char
| string
Export
— Enable or disable generation of the model parameter to calibration file (a2l)
true
(default) | false
Enable this property to generate the model parameter to calibration file (a2l).
BitMask
— Extract single bits from the model parameter value
hexadecimal value
Mask value in hexadecimal format to extract single bits from the model parameter during calibration. This property is applicable only for integers.
Data Types: hexadecimal
CalibrationAccess
— Enable or disable calibration of the model parameter
Calibration
(default) | NoCalibration
Select Calibration
for the model parameter to enable the
calibration. Select NoCalibration
to view the value of the model
parameter and disable the calibration.
CompuMethod
— Name of conversion method
character vector | string scalar
Name of the method for converting the ECU-internal value to a physical value for easy readability.
Data Types: char
| string
DisplayIdentifier
— Display name of the model parameter
character vector | string scalar
Optional display name of the model parameter for measurement purpose in the calibration tool, which is different than the model parameter name in the Simulink model.
Data Types: char
| string
Format
— Display format of the model parameter value
%[length].[layout]
Special display format to be specified for measurement in the calibration tool.
This format specification overrules the display format specified in
CompuMethod
of the model parameter.
Version History
Introduced in R2020b
Commande MATLAB
Vous avez cliqué sur un lien qui correspond à cette commande MATLAB :
Pour exécuter la commande, saisissez-la dans la fenêtre de commande de MATLAB. Les navigateurs web ne supportent pas les commandes MATLAB.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)