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
@@ -1583,16 +1583,17 @@ def convertMo2Fmu(
1583
1583
# to convert FMU to Modelica model
1584
1584
defconvertFmu2Mo(
1585
1585
self,
1586
-
fmuName: os.PathLike,
1586
+
fmu: os.PathLike,
1587
1587
) ->pathlib.Path:
1588
1588
"""
1589
-
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".
1589
+
In order to load FMU, at first it needs to be translated into Modelica model. This method is used to generate
1590
+
Modelica model from the given FMU. It generates "fmuName_me_FMU.mo".
1590
1591
Currently, it only supports Model Exchange conversion.
0 commit comments