Simulation setup
To simulate FMU `egs.fmu` with OMSimulator run ```bash $ wine64 /var/lib/jenkins/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulatorBinaries/OMSimulator-mingw64/bin/OMSimulator.exe --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --suppressPath=true --timeout=60 egs.lua ``` Lua file: ```lua -- Lua file for egs.fmu oms_setTempDirectory("/tmp/cross-check") oms_newModel("model") oms_addSystem("model.root", oms_system_wc) -- instantiate FMU oms_addSubModel("model.root.fmu", "egs.fmu") -- Simulation settings oms_setResultFile("model", "egs_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 33.56) oms_setTolerance("model", 1e-08, 0.01) oms_setFixedStepSize("model", 0.01) -- Instantiate, initialize and simulate oms_instantiate("model") oms_initialize("model") oms_simulate("model") oms_terminate("model") oms_delete("model") ``` See the [OMSimulator documentation](https://openmodelica.org/doc/OMSimulator/master/html/index.html) for more information.
Stdout:
info: 0 warnings info: 4 errors
Stderr:
error: [NewModel] Unique temp directory does already exist. Clean up the temp directory "Z:\tmp\cross-check" and try again. error: [oms_addSystem] Model "model" does not exist in the scope error: [oms_addSubModel] Model "model" does not exist in the scope error: [oms_RunFile] egs.lua:7: oms_addSubModel(model.root.fmu,egs.fmu) failed