maestro
maestro copied to clipboard
Maestro a Co-Simulation Orchestration Engine
As noted in #179 the COE does not properly mark temp files created by [Fmi2FmuValidator.java](https://github.com/INTO-CPS-Association/maestro/blob/development/frameworks/fmi2/src/main/java/org/intocps/maestro/framework/fmi2/Fmi2FmuValidator.java) properly. The `deleteOnExit()` should be explicitly set as it is not set by default. It...
When running multiple simulations on web api it is possible that the COE can act strangely The behavior of COE can be: - Works fine - When adding/removing multiple simulations...
A `mvn compile` on mac catalina produces the following error: `[ERROR] Failed to execute goal org.apache.maven.plugins:maven-dependency-plugin:2.8:unpack (default) on project maestro-webapi: Artifact has not been packaged yet. When used on reactor...
Hi Casper, In the bi-weekly yesterday, you asked: @Nick can you fmi static checker provide a hook to calculate i.e. remaining properties on a scalar variable? based on the defaults...
Typechecker has to be run when using plain spec from cli
The simple example has `string[] data_headers[1] = {"crtlValveState","wtLevel"};` which should be `string[] data_headers[2] = {"crtlValveState","wtLevel"};`
The `load` statement is for loading interpreter plugins, and unload is for unloading them. For example: ``` FMI2 tankcontroller = load("FMI2", "{8c4e810f-3df3-4a00-8276-176fa3c9f000}", "src/test/resources/watertankcontroller-c.fmu");``` unload(tankcontroller); ``` where the interpreter plugin `FMI2`...