You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: OMPython/ModelicaSystem.py
+9-3Lines changed: 9 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1579,16 +1579,17 @@ def convertMo2Fmu(
1579
1579
# to convert FMU to Modelica model
1580
1580
defconvertFmu2Mo(
1581
1581
self,
1582
-
fmuName: os.PathLike,
1582
+
fmu: os.PathLike,
1583
1583
) ->pathlib.Path:
1584
1584
"""
1585
-
In order to load FMU, at first it needs to be translated into Modelica model. This method is used to generate Modelica model from the given FMU. It generates "fmuName_me_FMU.mo".
1585
+
In order to load FMU, at first it needs to be translated into Modelica model. This method is used to generate
1586
+
Modelica model from the given FMU. It generates "fmuName_me_FMU.mo".
1586
1587
Currently, it only supports Model Exchange conversion.
0 commit comments