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 --workingDir=/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.1/Dymola/2017/Rectifier --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --suppressPath=true --timeout=60 /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.1/Dymola/2017/Rectifier/Rectifier.lua ``` Lua file: ```lua -- lua file for Rectifier.fmu oms_setTempDirectory('/tmp/cross-check') oms_newModel('model') oms_addSystem('model.root', oms_system_wc) -- instantiate FMU oms_addSubModel('model.root.fmu', 'Rectifier.fmu') -- simulation settings oms_setResultFile('model', 'Rectifier_out.csv') oms_setLoggingInterval('model', 1e-05) oms_setStartTime('model', 0.0) oms_setStopTime('model', 0.1) oms_setTolerance('model', 1e-06, 0.0001) oms_setFixedStepSize('model', 0.0002) -- 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: resources/0001_fmu.fmu] The FMU lists 4 state derivatives but actually exposes 5 state derivatives. The following derivatives are missing: 70: der(Inductor1.i) warning: [fmu: resources/0001_fmu.fmu] The FMU lists 14 initial unknowns but actually exposes 16 initial unknowns. The following unknowns are missing: 69: Inductor1.i, 70: der(Inductor1.i) info: [fmu: resources/0001_fmu.fmu] The FMU contains bad initial unknowns. This might cause problems, e.g. wrong simulation results. info: Result file: Rectifier_out.csv (bufferSize=1) info: 2 warnings info: 0 errors
Stderr: