Andreas

Results 167 comments of Andreas

Any news on this issue? The libgfortran3 dependency is breaking my automated tests for a Julia FMU simulator I'm working on. The runner I'm using doesn't has libgfortan3. While I...

I'm not sure what exactly the issue is, but I guess it has something to do with the long jump function used when throwing an assert in the C code...

Any news on this issue? My scripts are generating a bunch of segmentation faults when running on a single FMU in multiple threads and FMI.jl is reporting errors when I...

I think I found my issue. I was My mwe looks something like this: FMU from ```modelica model HelloWorld "Simple hello world example" Real x(start=1, fixed=true); Real y; Real z;...

I couldn't reproduce the same issue, but with 2.0 VanDerPol FMU from https://github.com/modelica/Reference-FMUs and can trigger an error in `FMI.fmiFreeInstance!`. ```julia import FMI import FMIImport function runAll() fmuPath = "fmu/2.0/VanDerPol.fmu"...

Maybe it's more of an OpenModelica issue. What are the requirements for the FMU to be simulated in parallel? The OpenModelica FMUs are not thread-safe and I think are using...

I added an implementation for [Tables.jl](https://github.com/JuliaData/Tables.jl) interface to FMI.jl instead of doing it directly for DataFrames, CSV and so on.

The MAT solution writer won't save `b` at all. I guess it is possible to define references in the mat format, so you don't need to save the result twice.

That's a good idea. I changed the solver to CVODE: ```julia using FMI using DifferentialEquations using Sundials fmu = fmiLoad("ScalableTranslationStatistics.Examples.ScaledNLEquations.NLEquations_5.fmu") simData = fmiSimulate(fmu, (0.0, 10.0); solver=CVODE_BDF, recordValues=["outputs[1]"]) ``` Now the...

Well, that did something, but I'll send you the FMU via mail. ```julia julia> simData = fmiSimulate(fmu, (0.0, 10.0); showProgress=true, recordValues=["outputs[1]"]) ERROR: StackOverflowError: Stacktrace: [1] fmi2Simulate(::FMU2, ::Nothing, ::Vararg{Any}; kwargs::Base.Pairs{Symbol, Any,...