Filip Stenström

Results 10 comments of Filip Stenström

Comments from the Modelon compiler team: **Wouldn’t the easiest solution be to just make ModelicaServices a subpackage in MSL instead of a separate library?** Then we get rid of the...

> > Comments from the Modelon compiler team: > > **Wouldn’t the easiest solution be to just make ModelicaServices a subpackage in MSL instead of a separate library?** Then we...

> [FATAL][FMICAPI] Could not load the DLL: libgfortran.so.3: cannot open shared object file: No such file or directory This signifies that the dynamic loader can't find libgfortran, and since it...

Yes this seems to be Checker bug. It should be enough to change fmi2_input_reader.c:152: `indata->interpData[i] = *v1;` -> `indata->interpData[i] = v1[i];` (and same for FMI 1 corresponding file). I'll fix...

Perhaps one of these flags could help? ``` -t Temporary dir to use for unpacking the FMU. Default is to use system-wide directory, e.g., C:\Temp or /tmp. -z Do not...

The issue is that file permissions are lost when unzipping. Unzipping is done via minizip's `miniunz` function. From what I can see there is no option for preserving file permissions....

Hi, FMI 1 simulation code can be found mainly in src/FMI1/fmi1_cs_sim.c. From my interpretation of the standard, `StepIncomplete` happens when `DoStep` returns `fmiDiscard`. In FMI 2 it's in this case...

The error message comes from Bison. `$undefined` typically means that the parsed character is not defined in the grammar. In this particular case it's a bit odd since we do...

Thanks that's good to know. I'm not either certain about definition of state variables. I take it as "anything referenced by `ModelStructure.Derivatives` is a state variable", and from the spec....

> * Calculate the set of derivative SV indexes, where an SV is included if it's Real and it has the "derivative" flag set. > * If the set above...