-
Notifications
You must be signed in to change notification settings - Fork 27
Home
Alexis DUBURCQ edited this page Nov 15, 2019
·
23 revisions
-
Highly and easily configurable:
- Mechanical flexibility modelling
- Sensor noise, jitter and delay modelling
- Support external forces on frames (both impulse or via time-continuous callback)
- Support user-defined internal dynamics
- Support both finite time and time-continuous update period for each sensor and the controller independently
- Model uncertainties regarding the kinematics and dynamics properties
-
Deterministic or non deterministic on demand but still PERFECTLY REPEATABLE
-
Designed for fast and efficient optimal control research :
- Support step-by-step (optimized for performance) or one-shot simulation
- Fully wrapped in Python. Designed for (almost) never have to recompile C++.
- Add variables to the logger on-the-fly without compiling
- Useful to debugging and dynamic plots updated over time (not implemented so far)
-
Fast Python Interface:
- C++ / Python shared pointer to avoid boost converts back-and-forth
-
Very fast:
- No real-time reading/writting on hard drive (only in CPU cache then RAM)
- The log can be exported in CSV or binary on demand afterwards
- No real-time display by default
- A Python class offering this functionality is available
-
- Cartpole: 20ms for 1000 integration steps, corresponding to about 3s of simulation *
- No real-time reading/writting on hard drive (only in CPU cache then RAM)
-
Highly parallelizable:
- Thread safe (single process - single core)
- Synchronous by default (a Python class offering asynchronous controller update is available)
- No shared memory
-
Well-suited for Reinforcement Learning:
- Fully compatible with Gym OpenAI and any libraries built on top of it
- Support only multiple point contact with the ground applied on frame
- The ground is flat
- No modelling of internal collisions contrary to Gazebo, ie for rotary joints
- No collision between links
- Open-source Jiminy core: stable
- Open-source Gym/Jiminy interface: stable
- Mock of a High-Level Controller: none
- Modelling must be improved:
- Only "perfect" sensor data with noise/delay/jitter is available
-
- No complementary filter for IMUs, no voltage to force converter for Force sensors... *
-
- Only "perfect" Low-level controller:
-
- No voltage-current to torque-velocity conversion. No response time. *
-
- Only "perfect" sensor data with noise/delay/jitter is available
- Error handling could be improved
-
- Old-fashioned message + return code *
-