Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,443 changes: 16 additions & 2,427 deletions OMPython/ModelicaSystem.py

Large diffs are not rendered by default.

51 changes: 33 additions & 18 deletions OMPython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,32 @@
OMPathRunnerLocal,
OMSessionRunner,
)

from OMPython.ModelicaSystem import (
from OMPython.modelica_system_abc import (
LinearizationResult,
ModelicaSystem,
ModelicaSystemOMC,
ModelicaSystemDoE,
ModelicaDoEOMC,
ModelicaSystemABC,
ModelicaSystemError,
)
from OMPython.modelica_system_omc import (
ModelicaSystemOMC,
)
from OMPython.modelica_system_runner import (
ModelicaSystemRunner,
ModelicaDoERunner,

)
from OMPython.modelica_doe_abc import (
ModelicaDoEABC,
)
from OMPython.modelica_doe_omc import (
doe_get_solutions,

ModelicaDoEOMC,
)
from OMPython.modelica_doe_runner import (
ModelicaDoERunner,
)

from OMPython.ModelicaSystem import (
ModelicaSystem,
ModelicaSystemDoE,
ModelicaSystemCmd,
)
from OMPython.OMCSession import (
Expand All @@ -63,12 +76,23 @@

# global names imported if import 'from OMPython import *' is used
__all__ = [
'doe_get_solutions',

'LinearizationResult',

'ModelExecutionCmd',
'ModelExecutionData',
'ModelExecutionException',

'ModelicaDoEABC',
'ModelicaDoEOMC',
'ModelicaDoERunner',
'ModelicaSystemABC',
'ModelicaSystemDoE',
'ModelicaSystemError',
'ModelicaSystemOMC',
'ModelicaSystemRunner',

'OMPathABC',
'OMSessionABC',
'OMSessionException',
Expand All @@ -85,17 +109,8 @@
'OMPathRunnerLocal',
'OMSessionRunner',

'ModelicaSystem',
'ModelicaSystemOMC',
'ModelicaSystemCmd',
'ModelicaSystemDoE',
'ModelicaDoEOMC',
'ModelicaSystemError',

'ModelicaSystemRunner',
'ModelicaDoERunner',

'doe_get_solutions',
'ModelicaSystem',

'OMCSessionABC',
'OMCSessionCmd',
Expand Down
Loading
Loading