Simulation setup
To simulate FMU `Stair.fmu` with OMSimulator run ```bash $ OMSimulator\ --stripRoot=true \ --skipCSVHeader=true \ --addParametersToCSV=true \ --intervals=500 \ --suppressPath=true \ --timeout=60\ Stair.lua ``` Lua file: ```lua -- Lua file for Stair.fmu oms_setTempDirectory("temp") oms_newModel("model") oms_addSystem("model.root", oms_system_sc) -- instantiate FMU oms_addSubModel("model.root.fmu", "../../../../../../../../../fmus/2.0/me/linux64/Test-FMUs/0.0.1/Stair/Stair.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "Stair_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 10.0) oms_setTolerance("model", 1e-05) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.02, minimumStepSize, 0.02) 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: model doesn't contain any continuous state info: Result file: Stair_out.csv (bufferSize=1)
Stderr: