We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ad2706 commit f18be10Copy full SHA for f18be10
modelica_fmi/src/modelica_fmi/import_fmu_to_modelica.py
@@ -51,6 +51,9 @@ def import_fmu_to_modelica(
51
52
model_description = read_model_description(fmu_path)
53
54
+ if model_description.fmiVersion == "1.0":
55
+ raise FMUImportError(f"FMI 1.0 is not supported.")
56
+
57
if (
58
model_description.defaultExperiment is not None
59
and model_description.defaultExperiment.stepSize is not None
0 commit comments