Simulation setup
To simulate FMU `Rectifier.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 --intervals=500 --suppressPath=true --timeout=60 Rectifier.lua ``` Lua file: ```lua -- Lua file for Rectifier.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/SimulationX/3.7.41138/Rectifier/Rectifier.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "Rectifier_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 0.1) oms_setTolerance("model", 1e-05) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 1e-05, minimumStepSize, 1e-05) oms_setFixedStepSize("model", 1e-05) -- 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: Result file: Rectifier_out.csv (bufferSize=1) warning: temp directory "Z:\var\lib\jenkins\ws\Sandbox\Andreas\OMSimulator-FMI-Cross-Check\OMSimulator\testsuite\fmi-cross-check\fmi-cross-check\results\2.0\cs\win64\OMSimulator\v2.1.0\SimulationX\3.7.41138\Rectifier\temp\model-fwphmea3" couldn't be removed filesystem error: cannot remove all: Permission denied [Z:\var\lib\jenkins\ws\Sandbox\Andreas\OMSimulator-FMI-Cross-Check\OMSimulator\testsuite\fmi-cross-check\fmi-cross-check\results\2.0\cs\win64\OMSimulator\v2.1.0\SimulationX\3.7.41138\Rectifier\temp\model-fwphmea3] info: 1 warnings info: 0 errors
Stderr:
01bd:fixme:ntdll:EtwEventRegister ({5eec90ab-c022-44b2-a5dd-fd716a222a15}, 0x180001124, 0x180124380, 0x1801243a0) stub. 01bd:fixme:ntdll:EtwEventSetInformation (deadbeef, 2, 0x1801136d0, 43) stub 01bd:fixme:ntdll:EtwEventUnregister (deadbeef) stub. 01bd:fixme:ntdll:EtwEventUnregister (0) stub.