We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 781e508 commit c86f68bCopy full SHA for c86f68b
1 file changed
tests/test_FMIExport.py
@@ -13,6 +13,13 @@ def test_CauerLowPassAnalog():
13
try:
14
fmu = mod.convertMo2Fmu(fileNamePrefix="CauerLowPassAnalog")
15
assert os.path.exists(fmu)
16
+
17
+ # TODO: check if solution is identical to original simulation?!
18
+ mod2 = OMPython.ModelicaSystem()
19
+ mod2.convertFmu2Mo(
20
+ fmu=fmu,
21
+ )
22
23
finally:
24
shutil.rmtree(tmp, ignore_errors=True)
25
@@ -27,5 +34,12 @@ def test_DrumBoiler():
27
34
28
35
fmu = mod.convertMo2Fmu(fileNamePrefix="DrumBoiler")
29
36
37
38
39
40
41
42
43
30
44
31
45
0 commit comments