Simulation setup
To simulate FMU `DFFREG.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 --intervals=500 --suppressPath=true --timeout=60 DFFREG.lua ``` Lua file: ```lua -- Lua file for DFFREG.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/2016FD01/DFFREG/DFFREG.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "DFFREG_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 25.0) oms_setTolerance("model", 0.0001) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.05, minimumStepSize, 0.05) oms_setFixedStepSize("model", 0.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:
warning: fmu (): fmi2SetupExperiment: tolerance control not supported for fmuType fmi2ModelExchange, setting toleranceDefined to fmi2False info: model doesn't contain any continuous state info: Result file: DFFREG_out.csv (bufferSize=1) info: 1 warnings info: 0 errors
Stderr: