Simulation setup
To simulate FMU `Rectifier.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/MapleSim/2018/Rectifier --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/MapleSim/2018/Rectifier/Rectifier.lua ``` Lua file: ```lua -- lua file for Rectifier.fmu oms_setTempDirectory('/tmp/cross-check') oms_newModel('model') oms_addSystem('model.root', oms_system_wc) -- instantiate FMU oms_addSubModel('model.root.fmu', 'Rectifier.fmu') -- simulation settings oms_setResultFile('model', 'Rectifier_out.csv') oms_setLoggingInterval('model', 0.0002) oms_setStartTime('model', 0.0) oms_setStopTime('model', 0.1) oms_setTolerance('model', 1e-06, 1e-06) oms_setFixedStepSize('model', 1e-07) -- 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: Result file: Rectifier_out.csv (bufferSize=1) info: Parameter model.root.fmu.binfilename will not be stored in the result file, because the signal type is not supported
Stderr: