Simulation setup
To simulate FMU `PID_Controller.fmu` with OMSimulator run ```bash $ OMSimulator\ --stripRoot=true \ --skipCSVHeader=true \ --addParametersToCSV=true \ --intervals=500 \ --suppressPath=true \ --timeout=60\ PID_Controller.lua ``` Lua file: ```lua -- Lua file for PID_Controller.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/JModelica.org/1.15/PID_Controller/PID_Controller.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "PID_Controller_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 4.0) oms_setTolerance("model", 0.0001) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.01, minimumStepSize, 0.01) oms_setFixedStepSize("model", 0.01) -- 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: libgfortran.so.3: 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