Simulation setup
To simulate FMU `Boocwen.fmu` with OMSimulator run ```bash $ /var/lib/jenkins1/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulatorBinaries/OMSimulator-linux-amd64/bin/OMSimulator --workingDir=/var/lib/jenkins1/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulator/testsuite/fmi-cross-check/fmi-cross-check/results/2.0/me/linux64/OMSimulator/v2.1.1/solidThinking_Activate/2020/Boocwen --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --suppressPath=true --timeout=60 /var/lib/jenkins1/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulator/testsuite/fmi-cross-check/fmi-cross-check/results/2.0/me/linux64/OMSimulator/v2.1.1/solidThinking_Activate/2020/Boocwen/Boocwen.lua ``` Lua file: ```lua -- lua file for Boocwen.fmu oms_setTempDirectory('/tmp/cross-check') oms_newModel('model') oms_addSystem('model.root', oms_system_sc) -- instantiate FMU oms_addSubModel('model.root.fmu', 'Boocwen.fmu') -- simulation settings oms_setResultFile('model', 'Boocwen_out.csv') oms_setLoggingInterval('model', 0.0002) oms_setStartTime('model', 0.0) oms_setStopTime('model', 0.1) oms_setTolerance('model', 0.0001, 0.0001) oms_setVariableStepSize('model', 1e-12, 1e-12, 0.0001) -- 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.000100 info: Result file: Boocwen_out.csv (bufferSize=1) info: Variable model.root.fmu.Solver.Time_Tolerance will not be stored in the result file, because the signal type is not supported info: Variable model.root.fmu.Solver.Absolute_Tolerance will not be stored in the result file, because the signal type is not supported info: Variable model.root.fmu.Solver.Relative_Tolerance will not be stored in the result file, because the signal type is not supported info: Final Statistics for 'model.root': NumSteps = 305 NumRhsEvals = 418 NumLinSolvSetups = 68 NumNonlinSolvIters = 417 NumNonlinSolvConvFails = 0 NumErrTestFails = 25
Stderr: