Simulation setup
To simulate FMU `CoupledClutches.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 CoupledClutches.lua ``` Lua file: ```lua -- Lua file for CoupledClutches.fmu oms_setTempDirectory("temp") oms_newModel("model") oms_addSystem("model.root", oms_system_sc) -- instantiate FMU oms_addSubModel("model.root.fmu", "../../../../../../../../../fmus/2.0/me/win64/Dymola/2017/CoupledClutches/CoupledClutches.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "CoupledClutches_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 1.5) oms_setTolerance("model", 0.0001) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.003, minimumStepSize, 0.003) oms_setFixedStepSize("model", 0.003) -- 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: fmu (): fmi2SetupExperiment: tolerance control not supported for fmuType fmi2ModelExchange, setting toleranceDefined to fmi2False info: maximum step size for 'model.root': 0.100000 info: Result file: CoupledClutches_out.csv (bufferSize=1) info: Final Statistics for 'model.root': NumSteps = 224 NumRhsEvals = 485 NumLinSolvSetups = 208 NumNonlinSolvIters = 484 NumNonlinSolvConvFails = 0 NumErrTestFails = 99 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\me\win64\OMSimulator\v2.0.0\Dymola\2017\CoupledClutches\temp\model-qowotvkf" 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\me\win64\OMSimulator\v2.0.0\Dymola\2017\CoupledClutches\temp\model-qowotvkf] info: 2 warnings info: 0 errors
Stderr: