Simulation setup
To simulate FMU `Feedthrough.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/me/linux64/OMSimulator/v2.1.1/Test-FMUs/0.0.2/Feedthrough --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/me/linux64/OMSimulator/v2.1.1/Test-FMUs/0.0.2/Feedthrough/Feedthrough.lua ``` Lua file: ```lua -- lua file for Feedthrough.fmu oms_setTempDirectory('/tmp/cross-check') oms_newModel('model') oms_addSystem('model.root', oms_system_sc) -- instantiate FMU oms_addSubModel('model.root.fmu', 'Feedthrough.fmu') oms_addSubModel('model.root.input', '/var/lib/jenkins1/ws/Sandbox/Andreas/OMSimulator-FMI-Cross-Check/OMSimulator/testsuite/fmi-cross-check/fmi-cross-check/fmus/2.0/me/linux64/Test-FMUs/0.0.2/Feedthrough/Feedthrough_in.csv') -- connect inputs to FMU oms_addConnection('model.root.input.real_tunable_param', 'model.root.fmu.real_tunable_param') oms_addConnection('model.root.input.real_continuous_in', 'model.root.fmu.real_continuous_in') oms_addConnection('model.root.input.real_discrete_in', 'model.root.fmu.real_discrete_in') oms_addConnection('model.root.input.int_in', 'model.root.fmu.int_in') oms_addConnection('model.root.input.bool_in', 'model.root.fmu.bool_in') -- simulation settings oms_setResultFile('model', 'Feedthrough_out.csv') oms_setLoggingInterval('model', 0.004) oms_setStartTime('model', 0.0) oms_setStopTime('model', 2.0) oms_setTolerance('model', 1e-06, 1e-05) oms_setVariableStepSize('model', 1e-12, 1e-12, 0.004) -- 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: model doesn't contain any continuous state info: Result file: Feedthrough_out.csv (bufferSize=1) info: Parameter model.root.fmu.string_param will not be stored in the result file, because the signal type is not supported info: 0 warnings info: 11 errors
Stderr:
error: [fmi2logger] fmu (logStatusError): fmi2SetBoolean: Illegal call sequence. error: [fmi2logger] fmu (logStatusError): fmi2SetTime: Illegal call sequence. error: [doStep] fmi2_import_set_time failed for FMU "model.root.fmu" error: [fmi2logger] fmu (logStatusError): fmi2CompletedIntegratorStep: Illegal call sequence. error: [doStep] fmi2_import_completed_integrator_step failed for FMU "model.root.fmu" error: [fmi2logger] fmu (logStatusError): fmi2Terminate: Illegal call sequence. error: [terminate] Termination of system "fmu" failed error: [terminate] Termination of system "model.root" failed error: [fmi2logger] fmu (logStatusError): fmi2Terminate: Illegal call sequence. error: [terminate] Termination of system "fmu" failed error: [terminate] Termination of system "model.root" failed