arun3688
arun3688
@christiankral to delete a session you have to use `quit()` like `sendExpression(omc, "quit()")`
@christiankral , It seems there is a problem with Julia parser when parsing the results from omc, please disable the parser like below ``` julia> omc = OMJulia.OMCSession() julia> sendExpression(omc,...
@christiankral Well the immediate solution is to use `parsed = false`, but offcourse we need to fix the parser
Hi OliWard, From the error message i can see that you are using old version of OMJulia, please update your OMJulia package with the latest master and perform the test....
@CSchoel you can use something like below, This should fetch the latest changes ``` julia> import Pkg julia> Pkg.add(PackageSpec(url=”https://github.com/OpenModelica/OMJulia.jl”)) ```
@lochel we can make a new pip release i guess
@lochel you mean the nightly builds are broken with related to OMSimulator update ?
@sturmk The API is indeed available, You are using older version of OMSimulator, please update OMSimulator package if you are using pip otherwise update from github master, see the example...
@sturmk can you post your ful python script
@sturmk with the new API format i think you need to create the model or system instances and use the API, see the example here https://github.com/OpenModelica/OMSimulator/blob/master/testsuite/simulation/equationPair.py, But could you adapt...