ModelicaRes
ModelicaRes copied to clipboard
Set up, analyze, and plot Modelica simulations in Python
There are multiple imports of `matplolib.cbook.iterable` ([1](https://github.com/kdavies4/ModelicaRes/blob/76236906b604ba0fc1ccffb6c0a9400b869965d5/modelicares/util.py#L129), [2](https://github.com/kdavies4/ModelicaRes/blob/76236906b604ba0fc1ccffb6c0a9400b869965d5/modelicares/linres.py#L33)), however, this object is deprecated with maplotlib from version v3.1.0 ([source](https://matplotlib.org/3.1.1/api/cbook_api.html#matplotlib.cbook.iterable)). This has already causing import errors. An eassiest fix would be...
The old code: from matplotlib.cbook import iterable is not compatible with the newer matplotlib from numpy import iterable works with the new matplotlib
The old code: from matplotlib.cbook import iterable is not compatible with the newer matplotlib from numpy import iterable works with the new matplotlib
The old code: from matplotlib.cbook import iterable is not compatible with the newer matplotlib from numpy import iterable works with the new matplotlib
When trying to import SimRes I receive the following error. ``` In [1]: from modelicares import SimRes Traceback (most recent call last): File "C:\ProgramData\Miniconda3\lib\site-packages\IPython\core\interactiveshell.py", line 3418, in run_code exec(code_obj, self.user_global_ns,...
QT is used more widely, and it still seems to be difficult to get wx running with Python 3.
Hi! I am using this class, in modelicares.exps.simulators file, and... the script seems to be written fine, but I do not see how the class executes the .mos file. Its...
Hello again! I am having this error when importing SimRes ``` Traceback (most recent call last): File "C:\Users\fragom\PhD_CIM\PYTHON\SimuGUI\src\gui\msv_framework_gui.py", line 11, in from gui import UI_LoadSources, UI_ConfigSolver, UI_Simulation, UI_Plot File "C:\Users\fragom\PhD_CIM\PYTHON\SimuGUI\src\gui\__init__.py",...
When trying to export simulation data to a dataFrame pandas raises a KeyError. The problem is that Dymola does not store the units into the *.mat-file when using Dymola functions...
ImportError Traceback (most recent call last) in () ----> 1 from modelicares.exps.simulators import dymosim /home/danie/.virtualenvs/vhm/local/lib/python2.7/site-packages/modelicares/exps/simulators.py in () 42 from multiprocessing import Pool 43 from shutil import copy, move, rmtree --->...