Main Content

What Is a Data Dictionary?

A data dictionary is a persistent repository of data that are relevant to your model. You can also use the base workspace to store design data that are used by your model during simulation. However, a data dictionary provides more capabilities.

The dictionary stores design data, which define parameters and signals, and include data that define the behavior of the model. The dictionary does not store simulation data, which are inputs or outputs of model simulation that enter and exitInportandOutportblocks.

Dictionary Capabilities

Dictionary Capability Benefit
Dictionary as data source Entries in a dictionary are persistent. You do not need to reload data during development.
明确的数据模型的链接 You can define a data dictionary as the data source for a model. During model simulation and code generation, the model retrieves data from the data dictionary.
Version handling

You can:

  • Link a model to a data dictionary that includes model data saved in a previous version of Simulink®.

  • Continue using the data dictionary of a model saved in a previous version of Simulink with versions of the model saved in later versions of Simulink.

  • Export (save) a data dictionary for use in models created with a previous version of Simulink.

Change tracking When you modify an entry, its status is updated in the dictionary and stored as metadata that can be tracked. The dictionary also tracks who made the changes and when. You can also view or revert changes.
Entry comparison Compare values of entries in two dictionaries.
Data grouping into reference dictionaries Partition and organize data items into reference dictionaries.
Model-data dependency Discover how entries are used in the model.
Additional options to remedy a missing variable When a workspace variable that a model needs is not available, you have additional options for remediation. For example, if you renamed the variable in a dictionary, you can create a new variable by copying the old one.
大的e and partition reference data 大的e and partition data that are relevant to a model, such as equipment specifications, but not used by the model during simulation.
Unified interface for defining data Use the Model Explorer to work with design data in a dictionary.
Incremental update in memory Improved performance and scalability with minimal memory footprint.
Requirements traceability linking Navigate from a data dictionary entry to a location in a requirements document.

Sections of a Dictionary

A Simulink data dictionary consists of four sections:

  • Design Data: Contains the variables and data types that define parameters, signals, and design data that determine the behavior of the model. Design data created or imported in a dictionary are stored in this section.

    This section can store only certain classes and data types. SeeValid Design Data Classesfor more information.

  • Configurations: Contains configuration sets, which are objects of theSimulink.ConfigSetclass, that determine how the model is configured during simulation. These objects control attributes such as sample time and simulation start time.

    When you store configuration sets in a data dictionary, you use configuration references to access the configuration sets. Models that are linked to a dictionary resolve configuration references to configuration sets in the dictionary. For more information about configuration references, seeShare a Configuration with Multiple Models.

    This section can also store variant configuration objects, which belong to theSimulink.VariantConfigurationDataclass. These objects store information about variant configurations, active and default variant settings, and definitions of the control variable associated with each configuration.

    Note

    If you load a configuration set from the data dictionary that contains a component that is not available on your system, the parameters in the missing component are reset to their default values.

  • Embedded Coder Dictionary: Contains code generation definitions for use with Embedded Coder®. To inspect and modify code definitions stored in a data dictionary, use theEmbedded Coder Dictionary(Embedded Coder)not the Model Explorer.

  • Other Data: Contains information that is relevant to your model but not used by the model during simulation. Use this section to store reference information such as data that describe physical equipment and processes that are represented by your model.

    This section can store almost any built-in or custom class or data type. See无效的其他数据类for more information.

Dictionary Usage for Models Created with Different Versions of Simulink

Simulink provides version handling for data dictionaries. When these events occur, Simulink synchronizes data in a dictionary for use with a model regardless of the Simulink version used to create the model:

  • 你联系一个模型数据字典,是干腊肠ed in a previous version of Simulink– for example, you link a model that you develop in R2018b with a dictionary saved in R2018a.

  • You open a model that is linked to a data dictionary and was saved in a previous version of Simulink – for example, you developed a model that uses a data dictionary in R2018a and you open that model in R2018b to continue development.

To view the Simulink version in which a data dictionary is saved, in the Current Folder browser, click the data dictionary and find theSaved in Simulink versionfield in theDetailspane. You also have the option to export (save) a data dictionary for use with models created using a different version of Simulink. To use a data dictionary you saved in a newer Simulink version in an older Simulink version, you need to export it first.

To export a data dictionary:

  1. In the当前的Folderpane of the MATLAB®Command Window, navigate to the location of the data dictionary.

  2. Double-click the name of the dictionary.

  3. In the Model Explorer, right-click the name of the data dictionary. If you have made changes to the dictionary, in the context menu, selectSave Changes.

  4. Right-click the name of the data dictionary. In the context menu, selectExport to Previous Version.

  5. In the Export Data Dictionary to Previous Version dialog box, specify the previous version of Simulink in which you want to save the model. Specify the folder into which you want Simulink to place the new version of the dictionary. The folder that you specify cannot contain dictionaries that are part of the existing dictionary hierarchy. Then, clickOK.

  6. Verify that the new version of the data dictionary exists in the folder that you specified.

Manage and Edit Entries in a Dictionary

To create, modify, and view the entries in a data dictionary, use the Model Explorer. For more information, seeCreate, Edit, and Manage Workspace VariablesandView and Revert Changes to Dictionary Data.

To manage entries in a dictionary programmatically, see大的e Data in Dictionary Programmatically.

Dictionary Referencing

You can reference one or more dictionaries in a parent dictionary. The data in the referenced dictionaries are visible in the parent dictionary. Use this technique to meaningfully partition data, especially for model reference hierarchies. For more information, seePartition Dictionary Data Using Referenced DictionariesandPartition Data for Model Reference Hierarchy Using Data Dictionaries.

Import and Export File Formats

File Format Import to Dictionary Export from Dictionary
MAT-file
MATLAB script

Allow Access to Base Workspace

For information about theEnable model access to base workspaceproperty and theEnable dictionary access to base workspaceproperty, seeContinue to Use Shared Data in the Base Workspace.

Related Topics