Simulation setup
To simulate FMU `MIS_cs.fmu` with OMSimulator run ```bash $ /var/lib/jenkins1/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulatorBinaries/OMSimulator-linux-i386/bin/OMSimulator --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --intervals=500 --suppressPath=true --timeout=60 MIS_cs.lua ``` Lua file: ```lua -- Lua file for MIS_cs.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/linux32/AMESim/15/MIS_cs/MIS_cs.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "MIS_cs_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 0.016) oms_setTolerance("model", 1e-05) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 1e-05, minimumStepSize, 1e-05) oms_setFixedStepSize("model", 1e-05) -- 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 (warning): MIS_cs_fmi2Instantiate: the AME environment variable is undefined. Simulation could fail if the model requires datas from the LMS Amesim distribution Instantiating a system with 31 unknowns. warning: fmu (model): Sound propagation time, Twave = 0.000237022, is less than print interval in HL040. warning: fmu (model): Unless you modify the print interval, wave effects will not be visible in the saved results. warning: fmu (model): Thus the suggested substitute submodel below is friction dominated. warning: fmu (model): Consider using a HL0001 submodel. warning: fmu (model): Warning in HL040 instance 1. warning: fmu (model): Sound propagation time, Twave = 0.00210686, is less than print interval in HL040. warning: fmu (model): Unless you modify the print interval, wave effects will not be visible in the saved results. warning: fmu (model): Thus the suggested substitute submodel below is friction dominated. warning: fmu (model): Consider using a HL0001 submodel. warning: fmu (model): Warning in HL040 instance 2. info: Result file: MIS_cs_out.csv (bufferSize=1) warning: fmu (model): Warning in BHC11 instance 5 Chamber volume is limited by vol0 / 100 = 0.000000. info: 12 warnings info: 0 errors
Stderr: