Skip to content

Commit 58c01e1

Browse files
committed
??? last changes ...
1 parent 0da155d commit 58c01e1

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

OMPython/ModelicaSystem.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2219,6 +2219,12 @@ def get_session(self) -> OMSessionABC:
22192219
"""
22202220
return self._mod.get_session()
22212221

2222+
def get_resultpath(self) -> OMPathABC:
2223+
"""
2224+
Get the path the the result data is saved.
2225+
"""
2226+
return self._resultpath
2227+
22222228
def prepare(self) -> int:
22232229
"""
22242230
Prepare the DoE by evaluating the parameters. Each structural parameter requires a new instance of

OMPython/__init__.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
ModelicaDoEOMC,
2121
ModelicaSystemError,
2222

23+
ModelicaSystemRunner,
24+
ModelicaDoERunner,
25+
2326
doe_get_solutions,
2427
)
2528
from OMPython.OMCSession import (
@@ -50,6 +53,9 @@
5053
'ModelicaDoEOMC',
5154
'ModelicaSystemError',
5255

56+
'ModelicaSystemRunner',
57+
'ModelicaDoERunner',
58+
5359
'doe_get_solutions',
5460

5561
'OMCSessionCmd',

0 commit comments

Comments
 (0)