Simulation setup
To simulate FMU `lights_control.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 lights_control.lua ``` Lua file: ```lua -- Lua file for lights_control.fmu oms_setTempDirectory("/tmp/cross-check") oms_newModel("model") oms_addSystem("model.root", oms_system_wc) -- instantiate FMU oms_addSubModel("model.root.fmu", "lights_control.fmu") -- Simulation settings oms_setResultFile("model", "lights_control_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 7.0) 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-nurc0msv\temp\0001_fmu\binaries\win64\DbgHelp.dll' is now used! warning: temp directory "Z:\tmp\cross-check\model-nurc0msv" couldn't be removed filesystem error: cannot remove all: Input/output error [Z:\tmp\cross-check\model-nurc0msv] [Z:\tmp\cross-check\model-nurc0msv\temp\0001_fmu\binaries\win64] info: 1 warnings info: 5 errors
Stderr:
013b:fixme:ver:GetCurrentPackageId (0x32e990 (nil)): stub 013b:fixme:dbghelp:elf_search_auxv can't find symbol in module 013b:fixme:dbghelp:elf_search_auxv can't find symbol in module 013b:fixme:dbghelp:elf_search_auxv can't find symbol in module 013b: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