Simulation setup
To simulate FMU `IntegerNetwork1.fmu` with OMSimulator run ```bash $ wine64 /var/lib/jenkins2/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulatorBinaries/OMSimulator-mingw64/bin/OMSimulator.exe --workingDir=/var/lib/jenkins2/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/IntegerNetwork1 --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --suppressPath=true --timeout=60 /var/lib/jenkins2/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/IntegerNetwork1/IntegerNetwork1.lua ``` Lua file: ```lua -- lua file for IntegerNetwork1.fmu oms_setTempDirectory('/tmp/cross-check') oms_newModel('model') oms_addSystem('model.root', oms_system_wc) -- instantiate FMU oms_addSubModel('model.root.fmu', 'IntegerNetwork1.fmu') oms_addSubModel('model.root.input', '/var/lib/jenkins2/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulator/testsuite/fmi-cross-check/fmi-cross-check/fmus/2.0/cs/win64/Dymola/2017/IntegerNetwork1/IntegerNetwork1_in.csv') -- connect inputs to FMU oms_addConnection('model.root.input.integerStep', 'model.root.fmu.integerStep') -- simulation settings oms_setResultFile('model', 'IntegerNetwork1_out.csv') oms_setLoggingInterval('model', 0.2) oms_setStartTime('model', 0.0) oms_setStopTime('model', 10.0) oms_setTolerance('model', 1e-06, 0.0001) oms_setFixedStepSize('model', 0.02) -- 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: IntegerNetwork1_out.csv (bufferSize=1) warning: fmu (): CVODE: CVode failed with CV_TOO_CLOSE: tout too close to t0 to start integration. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 8 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 8 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 8.43215 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 8.43215 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 8.5 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 8.5 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.16667 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.16667 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.5 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.5 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.6 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.6 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.7335 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. warning: fmu (): CVODE: CVode failed with NONE: Internal t = 9.7335 and h = 6.66134e-016 are such that t + h = t on the next step. The solver will continue anyway. info: 17 warnings info: 0 errors
Stderr: