OMPython icon indicating copy to clipboard operation
OMPython copied to clipboard

A Python interface to OpenModelica communicating via CORBA or ZeroMQ

Results 47 OMPython issues
Sort by recently updated
recently updated
newest added

in OMEdit, I can create a blank model/class, then drag and drop blocks/components, and make connections between them, incrementally building a model. Can I use OMPython to similarly incrementally build...

Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. Release notes Sourced from actions/setup-python's releases. v5.0.0 What's Changed In scope of this release, we update node version runtime from node16 to node20 (actions/setup-python#772)....

dependencies

Follow-up to #214. See comments. `Popen` should be fed a list of arguments, not a single string. The fix in #214 splits the string but - arguments should be split...

### Description I have issues with the import of other models (lmodel) when setting a customBuildDirectory. ### Steps to reproduce ``` model_path = "C:\LocalData\Gitlab\SBC\sbc-modelica-app\app\files_io\2598988031648\neptune.mo" INNER_MODELPATH = "Buildingpackage.Buildingmodel" _dependencies = ["Modelica",...

### Description I worked with model.linearize() and only got zero-matrices. It took me a while to find out why. Turns out that this happens if the additional translation flag `--daeMode`...

### Description I can't use pyplot.savefig() from matplotlib.pyplot after linearizing a model with OMPython. ### Steps to Reproduce ``` from OMPython import OMCSessionZMQ omc = OMCSessionZMQ() model_path=omc.sendExpression("getInstallationDirectoryPath()") + "/share/doc/omc/testmodels/" from...

Hello! I've noticed that we could run simulations in parallel if we handled the process outside the simulate() method. It is useful to me because I need to run a...