Simulation setup
To simulate FMU `bouncingBall.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 --suppressPath=true --timeout=60 bouncingBall.lua ``` Lua file: ```lua -- Lua file for bouncingBall.fmu oms_setTempDirectory("/tmp/cross-check") oms_newModel("model") oms_addSystem("model.root", oms_system_sc) -- instantiate FMU oms_addSubModel("model.root.fmu", "bouncingBall.fmu") -- Simulation settings oms_setResultFile("model", "bouncingBall_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 4.0) oms_setTolerance("model", 1e-08, 0.01) oms_setVariableStepSize("model", 1e-12, 1e-12, 0.01) -- 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: maximum step size for 'model.root': 0.010000 info: Result file: bouncingBall_out.csv (bufferSize=1) info: Final Statistics for 'model.root': NumSteps = 173 NumRhsEvals = 178 NumLinSolvSetups = 19 NumNonlinSolvIters = 177 NumNonlinSolvConvFails = 0 NumErrTestFails = 1
Stderr: