Skip to content
157 changes: 91 additions & 66 deletions OMPython/ModelicaSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,15 @@ def __getitem__(self, index: int):
class ModelicaSystemCmd:
"""A compiled model executable."""

def __init__(self, runpath: pathlib.Path, modelname: str, timeout: Optional[float] = None) -> None:
def __init__(
self,
runpath: pathlib.Path,
modelname: Optional[str] = None,
timeout: Optional[float] = None,
) -> None:
if modelname is None:
raise ModelicaSystemError("Missing model name!")

self._runpath = pathlib.Path(runpath).resolve().absolute()
self._model_name = modelname
self._timeout = timeout
Expand Down Expand Up @@ -349,60 +357,25 @@ def parse_simflags(simflags: str) -> dict[str, Optional[str | dict[str, Any] | n
class ModelicaSystem:
def __init__(
self,
fileName: Optional[str | os.PathLike | pathlib.Path] = None,
modelName: Optional[str] = None,
lmodel: Optional[list[str | tuple[str, str]]] = None,
commandLineOptions: Optional[list[str]] = None,
variableFilter: Optional[str] = None,
customBuildDirectory: Optional[str | os.PathLike] = None,
omhome: Optional[str] = None,
omc_process: Optional[OMCProcessLocal] = None,
build: bool = True,
) -> None:
"""Initialize, load and build a model.

The constructor loads the model file and builds it, generating exe and
xml files, etc.
"""Create a ModelicaSystem instance. To define the model use model() or convertFmu2Mo().

Args:
fileName: Path to the model file. Either absolute or relative to
the current working directory.
modelName: The name of the model class. If it is contained within
a package, "PackageName.ModelName" should be used.
lmodel: List of libraries to be loaded before the model itself is
loaded. Two formats are supported for the list elements:
lmodel=["Modelica"] for just the library name
and lmodel=[("Modelica","3.2.3")] for specifying both the name
and the version.
commandLineOptions: List with extra command line options as elements. The list elements are
provided to omc via setCommandLineOptions(). If set, the default values will be overridden.
To disable any command line options, use an empty list.
variableFilter: A regular expression. Only variables fully
matching the regexp will be stored in the result file.
Leaving it unspecified is equivalent to ".*".
customBuildDirectory: Path to a directory to be used for temporary
files like the model executable. If left unspecified, a tmp
directory will be created.
omhome: OPENMODELICAHOME value to be used when creating the OMC
session.
omhome: path to OMC to be used when creating the OMC session (see OMCSessionZMQ).
omc_process: definition of a (local) OMC process to be used. If
unspecified, a new local session will be created.
build: Boolean controlling whether or not the model should be
built when constructor is called. If False, the constructor
simply loads the model without compiling.

Examples:
mod = ModelicaSystem("ModelicaModel.mo", "modelName")
mod = ModelicaSystem("ModelicaModel.mo", "modelName", ["Modelica"])
mod = ModelicaSystem("ModelicaModel.mo", "modelName", [("Modelica","3.2.3"), "PowerSystems"])
"""

if fileName is None and modelName is None and not lmodel: # all None
raise ModelicaSystemError("Cannot create ModelicaSystem object without any arguments")

if modelName is None:
raise ModelicaSystemError("A modelname must be provided (argument modelName)!")

self._quantities: list[dict[str, Any]] = []
self._params: dict[str, str] = {} # even numerical values are stored as str
self._inputs: dict[str, list | None] = {}
Expand Down Expand Up @@ -438,34 +411,82 @@ def __init__(
for opt in commandLineOptions:
self.setCommandLineOptions(commandLineOptions=opt)

if lmodel is None:
lmodel = []

if not isinstance(lmodel, list):
raise ModelicaSystemError(f"Invalid input type for lmodel: {type(lmodel)} - list expected!")

self._lmodel = lmodel # may be needed if model is derived from other model
self._model_name = modelName # Model class name
self._file_name = pathlib.Path(fileName).resolve() if fileName is not None else None # Model file/package name
self._simulated = False # True if the model has already been simulated
self._result_file: Optional[pathlib.Path] = None # for storing result file
self._variable_filter = variableFilter

self._work_dir: pathlib.Path = self.setWorkDirectory(customBuildDirectory)

self._model_name: Optional[str] = None
self._libraries: Optional[list[str | tuple[str, str]]] = None
self._file_name: Optional[os.PathLike]
self._variable_filter: Optional[str] = None

def model(
self,
name: str,
file: Optional[str | os.PathLike | pathlib.Path] = None,
libraries: Optional[list[str | tuple[str, str]]] = None,
variable_filter: Optional[str] = None,
build: bool = True,
) -> None:
"""Load and build a Modelica model.

This method loads the model file and builds it if requested (build == True).

Args:
file: Path to the model file. Either absolute or relative to
the current working directory.
name: The name of the model class. If it is contained within
a package, "PackageName.ModelName" should be used.
libraries: List of libraries to be loaded before the model itself is
loaded. Two formats are supported for the list elements:
lmodel=["Modelica"] for just the library name
and lmodel=[("Modelica","3.2.3")] for specifying both the name
and the version.
variable_filter: A regular expression. Only variables fully
matching the regexp will be stored in the result file.
Leaving it unspecified is equivalent to ".*".
build: Boolean controlling whether the model should be
built when constructor is called. If False, the constructor
simply loads the model without compiling.

Examples:
mod = ModelicaSystem()
# and then one of the lines below
mod.model(name="modelName", file="ModelicaModel.mo", )
mod.model(name="modelName", file="ModelicaModel.mo", libraries=["Modelica"])
mod.model(name="modelName", file="ModelicaModel.mo", libraries=[("Modelica","3.2.3"), "PowerSystems"])
"""

if self._model_name is not None:
raise ModelicaSystemError("Can not reuse this instance of ModelicaSystem "
f"defined for {repr(self._model_name)}!")

if not isinstance(name, str):
raise ModelicaSystemError("A model name must be provided (argument name)!")

if libraries is None:
libraries = []

if not isinstance(libraries, list):
raise ModelicaSystemError(f"Invalid input type for libraries: {type(libraries)} - list expected!")

# set variables
self._model_name = name # Model class name
self._libraries = libraries # may be needed if model is derived from other model
self._file_name = pathlib.Path(file).resolve() if file is not None else None # Model file/package name
self._variable_filter = variable_filter

if self._file_name is not None and not self._file_name.is_file(): # if file does not exist
raise IOError(f"{self._file_name} does not exist!")

self._work_dir: pathlib.Path = self.setWorkDirectory(customBuildDirectory)

if self._libraries:
self._loadLibrary(libraries=self._libraries)
if self._file_name is not None:
self._loadLibrary(lmodel=self._lmodel)
self._loadFile(fileName=self._file_name)

# allow directly loading models from MSL without fileName
elif fileName is None and modelName is not None:
self._loadLibrary(lmodel=self._lmodel)

if build:
self.buildModel(variableFilter)
self.buildModel(variable_filter)

def setCommandLineOptions(self, commandLineOptions: str):
"""
Expand All @@ -479,9 +500,9 @@ def _loadFile(self, fileName: pathlib.Path):
self.sendExpression(f'loadFile("{fileName.as_posix()}")')

# for loading file/package, loading model and building model
def _loadLibrary(self, lmodel: list):
def _loadLibrary(self, libraries: list):
# load Modelica standard libraries or Modelica files if needed
for element in lmodel:
for element in libraries:
if element is not None:
if isinstance(element, str):
if element.endswith(".mo"):
Expand Down Expand Up @@ -1516,9 +1537,13 @@ def _createCSVData(self, csvfile: Optional[pathlib.Path] = None) -> pathlib.Path

return csvfile

def convertMo2Fmu(self, version: str = "2.0", fmuType: str = "me_cs",
fileNamePrefix: str = "<default>",
includeResources: bool = True) -> str:
def convertMo2Fmu(
self,
version: str = "2.0",
fmuType: str = "me_cs",
fileNamePrefix: Optional[str] = None,
includeResources: bool = True,
) -> str:
"""Translate the model into a Functional Mockup Unit.

Args:
Expand All @@ -1534,12 +1559,12 @@ def convertMo2Fmu(self, version: str = "2.0", fmuType: str = "me_cs",
'/tmp/tmpmhfx9umo/CauerLowPassAnalog.fmu'
"""

if fileNamePrefix == "<default>":
if fileNamePrefix is None:
if self._model_name is None:
raise ModelicaSystemError("Missing model name!")
fileNamePrefix = self._model_name
if includeResources:
includeResourcesStr = "true"
else:
includeResourcesStr = "false"
includeResourcesStr = "true" if includeResources else "false"

properties = (f'version="{version}", fmuType="{fmuType}", '
f'fileNamePrefix="{fileNamePrefix}", includeResources={includeResourcesStr}')
fmu = self._requestApi(apiName='buildModelFMU', entity=self._model_name, properties=properties)
Expand Down
13 changes: 10 additions & 3 deletions tests/test_FMIExport.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@


def test_CauerLowPassAnalog():
mod = OMPython.ModelicaSystem(modelName="Modelica.Electrical.Analog.Examples.CauerLowPassAnalog",
lmodel=["Modelica"])
mod = OMPython.ModelicaSystem()
mod.model(
name="Modelica.Electrical.Analog.Examples.CauerLowPassAnalog",
libraries=["Modelica"],
)
tmp = mod.getWorkDirectory()
try:
fmu = mod.convertMo2Fmu(fileNamePrefix="CauerLowPassAnalog")
Expand All @@ -15,7 +18,11 @@ def test_CauerLowPassAnalog():


def test_DrumBoiler():
mod = OMPython.ModelicaSystem(modelName="Modelica.Fluid.Examples.DrumBoiler.DrumBoiler", lmodel=["Modelica"])
mod = OMPython.ModelicaSystem()
mod.model(
name="Modelica.Fluid.Examples.DrumBoiler.DrumBoiler",
libraries=["Modelica"],
)
tmp = mod.getWorkDirectory()
try:
fmu = mod.convertMo2Fmu(fileNamePrefix="DrumBoiler")
Expand Down
56 changes: 44 additions & 12 deletions tests/test_ModelicaSystem.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,25 @@ def model_firstorder(tmp_path):
def test_ModelicaSystem_loop(model_firstorder):
def worker():
filePath = model_firstorder.as_posix()
m = OMPython.ModelicaSystem(filePath, "M")
m.simulate()
m.convertMo2Fmu(fmuType="me")
mod = OMPython.ModelicaSystem()
mod.model(
file=filePath,
name="M",
)
mod.simulate()
mod.convertMo2Fmu(fmuType="me")
for _ in range(10):
worker()


def test_setParameters():
omc = OMPython.OMCSessionZMQ()
model_path = omc.sendExpression("getInstallationDirectoryPath()") + "/share/doc/omc/testmodels/"
mod = OMPython.ModelicaSystem(model_path + "BouncingBall.mo", "BouncingBall")
mod = OMPython.ModelicaSystem()
mod.model(
file=model_path + "BouncingBall.mo",
name="BouncingBall",
)

# method 1
mod.setParameters(pvals={"e": 1.234})
Expand Down Expand Up @@ -61,7 +69,11 @@ def test_setParameters():
def test_setSimulationOptions():
omc = OMPython.OMCSessionZMQ()
model_path = omc.sendExpression("getInstallationDirectoryPath()") + "/share/doc/omc/testmodels/"
mod = OMPython.ModelicaSystem(fileName=model_path + "BouncingBall.mo", modelName="BouncingBall")
mod = OMPython.ModelicaSystem()
mod.model(
file=model_path + "BouncingBall.mo",
name="BouncingBall",
)

# method 1
mod.setSimulationOptions(simOptions={"stopTime": 1.234})
Expand Down Expand Up @@ -94,7 +106,11 @@ def test_relative_path(model_firstorder):
model_relative = str(model_file)
assert "/" not in model_relative

mod = OMPython.ModelicaSystem(fileName=model_relative, modelName="M")
mod = OMPython.ModelicaSystem()
mod.model(
file=model_relative,
name="M",
)
assert float(mod.getParameters("a")[0]) == -1
finally:
model_file.unlink() # clean up the temporary file
Expand All @@ -104,17 +120,25 @@ def test_customBuildDirectory(tmp_path, model_firstorder):
filePath = model_firstorder.as_posix()
tmpdir = tmp_path / "tmpdir1"
tmpdir.mkdir()
m = OMPython.ModelicaSystem(filePath, "M", customBuildDirectory=tmpdir)
assert m.getWorkDirectory().resolve() == tmpdir.resolve()
mod = OMPython.ModelicaSystem(customBuildDirectory=tmpdir)
mod.model(
file=filePath,
name="M",
)
assert mod.getWorkDirectory().resolve() == tmpdir.resolve()
result_file = tmpdir / "a.mat"
assert not result_file.exists()
m.simulate(resultfile="a.mat")
mod.simulate(resultfile="a.mat")
assert result_file.is_file()


def test_getSolutions(model_firstorder):
filePath = model_firstorder.as_posix()
mod = OMPython.ModelicaSystem(filePath, "M")
mod = OMPython.ModelicaSystem()
mod.model(
file=filePath,
name="M",
)
x0 = 1
a = -1
tau = -1 / a
Expand Down Expand Up @@ -151,7 +175,11 @@ def test_getters(tmp_path):
y = der(x);
end M_getters;
""")
mod = OMPython.ModelicaSystem(fileName=model_file.as_posix(), modelName="M_getters")
mod = OMPython.ModelicaSystem()
mod.model(
file=model_file.as_posix(),
name="M_getters",
)

q = mod.getQuantities()
assert isinstance(q, list)
Expand Down Expand Up @@ -343,7 +371,11 @@ def test_simulate_inputs(tmp_path):
y = x;
end M_input;
""")
mod = OMPython.ModelicaSystem(fileName=model_file.as_posix(), modelName="M_input")
mod = OMPython.ModelicaSystem()
mod.model(
file=model_file.as_posix(),
name="M_input",
)

mod.setSimulationOptions(simOptions={"stopTime": 1.0})

Expand Down
6 changes: 5 additions & 1 deletion tests/test_ModelicaSystemCmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,11 @@ def model_firstorder(tmp_path):

@pytest.fixture
def mscmd_firstorder(model_firstorder):
mod = OMPython.ModelicaSystem(fileName=model_firstorder.as_posix(), modelName="M")
mod = OMPython.ModelicaSystem()
mod.model(
file=model_firstorder.as_posix(),
name="M",
)
mscmd = OMPython.ModelicaSystemCmd(runpath=mod.getWorkDirectory(), modelname=mod._model_name)
return mscmd

Expand Down
7 changes: 5 additions & 2 deletions tests/test_OMSessionCmd.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ def test_isPackage():


def test_isPackage2():
mod = OMPython.ModelicaSystem(modelName="Modelica.Electrical.Analog.Examples.CauerLowPassAnalog",
lmodel=["Modelica"])
mod = OMPython.ModelicaSystem()
mod.model(
name="Modelica.Electrical.Analog.Examples.CauerLowPassAnalog",
libraries=["Modelica"],
)
omccmd = OMPython.OMCSessionCmd(session=mod._getconn)
assert omccmd.isPackage('Modelica')

Expand Down
Loading
Loading