Simulation setup
To simulate FMU `Compute.fmu` with OMSimulator run ```bash $ wine64 /var/lib/jenkins3/ws/Sandbox/Andreas/Tmp/OMSimulatorBinaries/OMSimulator-mingw64/bin/OMSimulator.exe \ --stripRoot=true \ --skipCSVHeader=true \ --addParametersToCSV=true \ --intervals=500 \ --suppressPath=true \ --timeout=60 \ Compute.lua ``` Lua file: ```lua -- Lua file for Compute.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.3/Compute/Compute.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "Compute_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 4.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: temp directory "Z:\var\lib\jenkins3\ws\Sandbox\Andreas\Tmp\OMSimulator\testsuite\fmi-cross-check\fmi-cross-check\results\2.0\cs\win64\OMSimulator\v2.1.0\Silver\3.3\Compute\temp\model-78ah3gm7" couldn't be removed filesystem error: cannot remove all: Permission denied [Z:\var\lib\jenkins3\ws\Sandbox\Andreas\Tmp\OMSimulator\testsuite\fmi-cross-check\fmi-cross-check\results\2.0\cs\win64\OMSimulator\v2.1.0\Silver\3.3\Compute\temp\model-78ah3gm7] info: 1 warnings info: 6 errors
Stderr:
error: [fmiLogger] module FMI2XML: Start attribute is required for this causality, variability and initial combination 018d:fixme:ver:GetCurrentPackageId (0x33e1f0 (nil)): stub 018d:fixme:dbghelp:elf_search_auxv can't find symbol in module 018d:fixme:dbghelp:elf_search_auxv can't find symbol in module 018d:fixme:dbghelp:elf_search_auxv can't find symbol in module 018d:fixme:dbghelp:elf_search_auxv can't find symbol in module ERROR unknown: DbgHelpEx.dll: SymEnumSymbols failed error 6 ERROR unknown: InitPDB 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