SME (.sme)
- Import fully supports the SME format.
Background & Context
-
- System modeling simulation files generated in Wolfram System Modeler Simulation Center.
- File format created by Wolfram Research, Inc.
- Imported result data is represented as SystemModelSimulationData.
Import
- Import["file.sme","SME"] imports the specified file and makes it available as SystemModelSimulationData.
- See the following reference pages for full general information:
-
Import import from a file CloudImport import from a cloud object ImportString import from a string ImportByteArray import from a byte array
Import Elements
- General Import elements:
-
"Elements" list of elements and options available in this file "Summary" summary of the file "Rules" list of rules for all available elements - Import element:
-
"SystemModelSimulationData" simulation data as SystemModelSimulationData
Examples
open all close allBasic Examples (1)
Scope (2)
Imported data has the same properties as SystemModelSimulationData:
sim = Import["ExampleData/OneMass.sme", {"SME", "SystemModelSimulationData"}];sim["Properties"]Parameters, variables and sensitivities that have been saved in the simulation are available:
sim = Import["ExampleData/SimpleCooling.sme", {"SME", "SystemModelSimulationData"}];sim["SensitivityNames"]The parameter value for "heatFlow.k" has been changed in the simulation:
sim["Model"][{"ParameterValues", "heatFlow.k"}]sim[{"ParameterValues", "heatFlow.k"}]Properties & Relations (1)
Use "MO" to import Modelica models and make them available in the Wolfram Language:
model = Import["ExampleData/ExampleModel.mo", "MO"];model["SystemEquations"]Related Guides
Related Links
History
Introduced in 2018 (11.3)