Simulation setup
To simulate FMU `CoupledClutches.fmu` with OMSimulator run ```bash $ /var/lib/jenkins2/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulatorBinaries/OMSimulator-linux-amd64/bin/OMSimulator --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --suppressPath=true --timeout=60 CoupledClutches.lua ``` Lua file: ```lua -- Lua file for CoupledClutches.fmu oms_setTempDirectory("/tmp/cross-check") oms_newModel("model") oms_addSystem("model.root", oms_system_sc) -- instantiate FMU oms_addSubModel("model.root.fmu", "CoupledClutches.fmu") -- Simulation settings oms_setResultFile("model", "CoupledClutches_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 1.5) oms_setTolerance("model", 1e-05, 1e-05) oms_setVariableStepSize("model", 1e-12, 1e-12, 0.003) -- 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.003000 info: Result file: CoupledClutches_out.csv (bufferSize=1) info: Parameter model.root.fmu.binfilename will not be stored in the result file, because the signal type is not supported info: Final Statistics for 'model.root': NumSteps = 22 NumRhsEvals = 25 NumLinSolvSetups = 8 NumNonlinSolvIters = 24 NumNonlinSolvConvFails = 0 NumErrTestFails = 0
Stderr: