Simulation setup
To simulate FMU `egs.fmu` with OMSimulator run ```bash $ wine64 /var/lib/jenkins2/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:
WARNING unknown: File 'DbgHelp.dll' was specified during build of vECU, but file from overriding location 'Z:\tmp\cross-check\model-rerjip0k\temp\0001_fmu\binaries\win64\DbgHelp.dll' is now used! warning: temp directory "Z:\tmp\cross-check\model-rerjip0k" couldn't be removed filesystem error: cannot remove all: Input/output error [Z:\tmp\cross-check\model-rerjip0k] [Z:\tmp\cross-check\model-rerjip0k\temp\0001_fmu\binaries\win64] info: 1 warnings info: 5 errors
Stderr:
013f:fixme:ver:GetCurrentPackageId (0x32e990 (nil)): stub 013f:fixme:dbghelp:elf_search_auxv can't find symbol in module 013f:fixme:dbghelp:elf_search_auxv can't find symbol in module 013f:fixme:dbghelp:elf_search_auxv can't find symbol in module 013f:fixme:dbghelp:elf_search_auxv can't find symbol in module ERROR unknown: DbgHelpEx.dll: SymEnumSymbols failed error 6 ERROR unknown: LoadPDB failed ERROR unknown: Failed to create SBS instance error: [instantiate] fmi2_import_instantiate failed for FMU "model.root.fmu" error: [initialize] Model "model" is in wrong model state error: [simulate] Model "model" is in wrong model state error: [terminate] Model "model" is in wrong model state error: [terminate] Model "model" is in wrong model state