Simulation setup
To simulate FMU `lights_control.fmu` with OMSimulator run ```bash $ wine64 /var/lib/jenkins3/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulatorBinaries/OMSimulator-mingw64/bin/OMSimulator.exe --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --intervals=500 --suppressPath=true --timeout=60 lights_control.lua ``` Lua file: ```lua -- Lua file for lights_control.fmu oms_setTempDirectory("temp") oms_newModel("model") oms_addSystem("model.root", oms_system_wc) -- instantiate FMU oms_addSubModel("model.root.fmu", "../../../../../../../../../fmus/2.0/cs/win64/Silver/3.5/lights_control/lights_control.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "lights_control_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 7.0) oms_setTolerance("model", 0.01) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.01, minimumStepSize, 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:\var\lib\jenkins3\ws\Sandbox\Andreas\OMSimulator-FMI-Cross-Check\OMSimulator\testsuite\fmi-cross-check\fmi-cross-check\results\2.0\cs\win64\OMSimulator\v2.0.0\Silver\3.5\lights_control\temp\model-q5e6ehrr\temp\0001_fmu\binaries\win64\DbgHelp.dll' is now used! warning: temp directory "Z:\var\lib\jenkins3\ws\Sandbox\Andreas\OMSimulator-FMI-Cross-Check\OMSimulator\testsuite\fmi-cross-check\fmi-cross-check\results\2.0\cs\win64\OMSimulator\v2.0.0\Silver\3.5\lights_control\temp\model-q5e6ehrr" couldn't be removed filesystem error: cannot remove all: Permission denied [Z:\var\lib\jenkins3\ws\Sandbox\Andreas\OMSimulator-FMI-Cross-Check\OMSimulator\testsuite\fmi-cross-check\fmi-cross-check\results\2.0\cs\win64\OMSimulator\v2.0.0\Silver\3.5\lights_control\temp\model-q5e6ehrr] info: 1 warnings info: 6 errors
Stderr:
error: [fmiLogger] module FMI2XML: Start attribute is required for this causality, variability and initial combination 0135:fixme:ver:GetCurrentPackageId (0x32ea60 (nil)): stub 0135:fixme:dbghelp:elf_search_auxv can't find symbol in module 0135:fixme:dbghelp:elf_search_auxv can't find symbol in module 0135:fixme:dbghelp:elf_search_auxv can't find symbol in module 0135: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