Simulation setup
To simulate FMU `CoupledClutches.fmu` with OMSimulator run ```bash $ OMSimulator\ --stripRoot=true \ --skipCSVHeader=true \ --addParametersToCSV=true \ --intervals=500 \ --suppressPath=true \ --timeout=60\ CoupledClutches.lua ``` Lua file: ```lua -- Lua file for CoupledClutches.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/2019/CoupledClutches/CoupledClutches.fmu") -- Simulation settings oms_setSignalFilter("model", ".*") oms_setResultFile("model", "CoupledClutches_out.csv") oms_setStartTime("model", 0.0) oms_setStopTime("model", 1.5) oms_setTolerance("model", 1e-05) initialStepSize, minimumStepSize, maximumStepSize, status = oms_getVariableStepSize("model") oms_setVariableStepSize("model", 0.003, minimumStepSize, 0.003) oms_setFixedStepSize("model", 0.003) -- 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: Initial unknown dsn_EVAR8.der has bad dependency on variable with index 0 which couldn't be resolved info: Use flag --ignoreInitialUnknowns=true to ignore all dependencies, but this can cause inflated loop size. info: 1 warnings info: 4 errors
Stderr:
error: [fmiLogger] module FMI2XML: Start attribute is required for this causality, variability and initial combination error: [initializeDependencyGraph_initialUnknowns] fmu: erroneous dependencies detected in modelDescription.xml error: [NewComponent] fmu: Couldn't initialize dependency graph for initial unknowns. error: [oms_RunFile] CoupledClutches.lua:7: oms_addSubModel(model.root.fmu,../../../../../../../../../fmus/2.0/me/linux64/MapleSim/2019/CoupledClutches/CoupledClutches.fmu) failed