arun3688

Results 95 comments of arun3688

@LukasKoenemann You should not use `setParameters` for setting `stopTime`, setParameters are used to set parameters that are defined in a model. And you should get an error message saying that...

@LukasKoenemann I see that, this is a strange way of naming the parameter name to `stopTime` in that case it would be a conflict with override flags, In my opinion...

@perost @phannebohm I have sent the `DroneSystem` Package to your email address, please use the package from there

@JaxRaffnix I suggest you to manually setup the install after downloading the OMPython repo and do `>>> python setup.py install`

@JavierArroyoBastida I am trying to look into the issue, i am unable to clone the repository, can you just provide your models in a zip file so that i can...

@casella this is the exact meaning for that https://openmodelica.org/doc/OpenModelicaUsersGuide/latest/omsimulator.html#setfixedstepsize

@casella I am not working on this, I guess Andreas is working on this

@robha67 ok sure we need a meeting to discuss this in more detail

@Nobby-n To set the result file format when using ModelicaSystem you can set the result file via simulate API, something like below ``` from OMPython import ModelicaSystem mod=ModelicaSystem("BouncingBall.mo","BouncingBall") mod.simulate() //...

@Nobby-n It is not possible to use variable filter as a runtime simulation flags, but however you can use the `getSolutions` API to filter the results, something like below ```...