Simulation setup
To simulate FMU `Rectifier.fmu` with OMSimulator run ```bash $ OMSimulator\ --stripRoot=true \ --skipCSVHeader=true \ --addParametersToCSV=true \ --intervals=500 \ --suppressPath=true \ --timeout=60\ Rectifier.lua ``` Lua file: ```lua -- Lua file for Rectifier.fmu oms_setTempDirectory("temp") oms_newModel("model") oms_addSystem("model.root", oms_system_sc) -- instantiate FMU oms_addSubModel("model.root.fmu", "../../../../../../../../../fmus/2.0/me/linux64/MapleSim/2018/Rectifier/Rectifier.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "Rectifier_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 0.1) oms_setTolerance("model", 1e-05) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.0002, minimumStepSize, 0.0002) oms_setFixedStepSize("model", 0.0002) -- 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: maximum step size for 'model.root': 0.100000 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 info: Final Statistics for 'model.root': NumSteps = 15 NumRhsEvals = 24 NumLinSolvSetups = 10 NumNonlinSolvIters = 23 NumNonlinSolvConvFails = 0 NumErrTestFails = 1 info: 0 warnings info: 1 errors
Stderr:
error: [fmiLogger] module FMI2XML: Start attribute is required for this causality, variability and initial combination