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-amd64/bin/OMSimulator --workingDir=/var/lib/jenkins1/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulator/testsuite/fmi-cross-check/fmi-cross-check/results/2.0/cs/linux64/OMSimulator/v2.1.1/AMESim/15/MIS_cs --stripRoot=true --skipCSVHeader=true --addParametersToCSV=true --suppressPath=true --timeout=60 /var/lib/jenkins1/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulator/testsuite/fmi-cross-check/fmi-cross-check/results/2.0/cs/linux64/OMSimulator/v2.1.1/AMESim/15/MIS_cs/MIS_cs.lua ``` Lua file: ```lua -- lua file for MIS_cs.fmu oms_setTempDirectory('/tmp/cross-check') oms_newModel('model') oms_addSystem('model.root', oms_system_wc) -- instantiate FMU oms_addSubModel('model.root.fmu', 'MIS_cs.fmu') -- simulation settings oms_setResultFile('model', 'MIS_cs_out.csv') oms_setLoggingInterval('model', 3.2e-05) oms_setStartTime('model', 0.0) oms_setStopTime('model', 0.016) oms_setTolerance('model', 1e-06, 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: