Simulation setup
To simulate FMU `minimal_example.fmu` with OMSimulator run ```bash $ OMSimulator\ --stripRoot=true \ --skipCSVHeader=true \ --addParametersToCSV=true \ --intervals=500 \ --suppressPath=true \ --timeout=60\ minimal_example.lua ``` Lua file: ```lua -- Lua file for minimal_example.fmu oms_setTempDirectory("temp") oms_newModel("model") oms_addSystem("model.root", oms_system_wc) -- instantiate FMU oms_addSubModel("model.root.fmu", "../../../../../../../../../fmus/2.0/cs/linux64/pandapower/2.1.0/minimal_example/minimal_example.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "minimal_example_out.csv") oms_setStartTime("model", 0) oms_setStopTime("model", 1) oms_setTolerance("model", 1e-08) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.002, minimumStepSize, 0.002) oms_setFixedStepSize("model", 0.002) -- 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: 0 warnings info: 6 errors
Stderr:
error: [fmiLogger] module FMICAPI: Could not load the FMU binary: libpython3.7m.so.1.0: cannot open shared object file: No such file or directory error: [instantiate] Could not load "resources/0001_fmu.fmu" which is associated with "model.root.fmu"; it may be corrupted or may not support your platform error: [initialize] Model "model" is in wrong model state error: [simulate] Model "model" is in wrong model state error: [terminate] Model "model" is in wrong model state error: [terminate] Model "model" is in wrong model state