Changing the Simulation Timestep

By default, the virtual time between each timestep is 20 milliseconds. This is not hardcoded though, Cloe lets you set this at nanosecond granularity. You can refer to the tests/option_timestep_5.json configuration for changing the timestep to 5 ms:

{
  // Include to change the model step width to 5ms / step.
  // You can do this on the command line:
  //
  //   # cloe-launch shell conanfile_default.py
  //   # cloe-engine run config_nop_smoketest.json option_timestep_5.json
  //
  "version": "4",
  "simulation": {
    "model_step_width": 5000000
  }
}