Simulation setup
To simulate FMU `CoupledClutches.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 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-08, 0.0001) 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:
warning: [fmu: resources/0001_fmu.fmu] The FMU lists 18 initial unknowns but actually contains 28 initial unknowns as per the variable definitions. info: [fmu: resources/0001_fmu.fmu] The FMU contains bad initial unknowns. This might cause problems, e.g. wrong simulation results. warning: fmu (): fmi2SetupExperiment: tolerance control not supported for fmuType fmi2ModelExchange, setting toleranceDefined to fmi2False info: maximum step size for 'model.root': 0.003000 info: Result file: CoupledClutches_out.csv (bufferSize=1) info: Final Statistics for 'model.root': NumSteps = 364 NumRhsEvals = 737 NumLinSolvSetups = 313 NumNonlinSolvIters = 736 NumNonlinSolvConvFails = 0 NumErrTestFails = 144 info: 2 warnings info: 0 errors
Stderr:
007f:fixme:heap:RtlSetHeapInformation 0x930000 0 0x32e4d0 4 stub