ami-iit / jaxsim

A differentiable physics engine and multibody dynamics library for control and robot learning.
https://jaxsim.readthedocs.io/
BSD 3-Clause "New" or "Revised" License
57 stars 9 forks source link
aba ad automatic-differentiation crba dynamics featherstone jacobian jax jit kinematics ode physics physics-engine rigid-body-dynamics rnea robotics robotics-control robotics-simulation simulation simulation-modeling

JaxSim

JaxSim is a differentiable physics engine and multibody dynamics library designed for applications in control and robot learning, implemented with JAX.

Its design facilitates research and accelerates prototyping in the intersection of robotics and artificial intelligence.

Features

JaxSim as a simulator

JaxSim as a multibody dynamics library

JaxSim for robot learning

[!WARNING] This project is still experimental, APIs could change between releases without notice.

[!NOTE] JaxSim currently focuses on locomotion applications. Only contacts between bodies and smooth ground surfaces are supported.

Documentation

The JaxSim API documentation is available at jaxsim.readthedocs.io.

Installation

With conda You can install the project using [`conda`][conda] as follows: ```bash conda install jaxsim -c conda-forge ``` You can enforce GPU support, if needed, by also specifying `"jaxlib = * = *cuda*"`.
With pip You can install the project using [`pypa/pip`][pip], preferably in a [virtual environment][venv], as follows: ```bash pip install jaxsim ``` Check [`pyproject.toml`](pyproject.toml) for the complete list of optional dependencies. You can obtain a full installation using `jaxsim[all]`. If you need GPU support, follow the official [installation instructions][jax_gpu] of JAX.
Contributors installation If you want to contribute to the project, we recommend creating the following `jaxsim` conda environment first: ```bash conda env create -f environment.yml ``` Then, activate the environment and install the project in editable mode: ```bash conda activate jaxsim pip install --no-deps -e . ```

Overview

Structure of the Python package ``` # tree -L 2 -I "__pycache__" -I "__init__*" -I "__main__*" src/jaxsim src/jaxsim |-- api..........................# Package containing the main functional APIs. | |-- com.py...................# |-- APIs for computing quantities related to the center of mass. | |-- common.py................# |-- Common utilities used in the current package. | |-- contact.py...............# |-- APIs for computing quantities related to the collidable points. | |-- data.py..................# |-- Class storing the data of a simulated model. | |-- frame.py.................# |-- APIs for computing quantities related to additional frames. | |-- joint.py.................# |-- APIs for computing quantities related to the joints. | |-- kin_dyn_parameters.py....# |-- Class storing kinematic and dynamic parameters of a model. | |-- link.py..................# |-- APIs for computing quantities related to the links. | |-- model.py.................# |-- Class defining a simulated model and APIs for computing related quantities. | |-- ode.py...................# |-- APIs for computing quantities related to the system dynamics. | |-- ode_data.py..............# |-- Set of classes to store the data of the system dynamics. | `-- references.py............# `-- Helper class to create references (link forces and joint torques). |-- exceptions.py................# Module containing functions to raise exceptions from JIT-compiled functions. |-- integrators..................# Package containing the integrators used to simulate the system dynamics. | |-- common.py................# |-- Common utilities used in the current package. | |-- fixed_step.py............# |-- Fixed-step integrators (explicit Runge-Kutta schemes). | `-- variable_step.py.........# `-- Variable-step integrators (embedded Runge-Kutta schemes). |-- logging.py...................# Module containing logging utilities. |-- math.........................# Package containing mathematical utilities. | |-- adjoint.py...............# |-- APIs for creating and manipulating 6D transformations. | |-- cross.py.................# |-- APIs for computing cross products of 6D quantities. | |-- inertia.py...............# |-- APIs for creating and manipulating 6D inertia matrices. | |-- joint_model.py...........# |-- APIs defining the supported joint model and the corresponding transformations. | |-- quaternion.py............# |-- APIs for creating and manipulating quaternions. | |-- rotation.py..............# |-- APIs for creating and manipulating rotation matrices. | |-- skew.py..................# |-- APIs for creating and manipulating skew-symmetric matrices. | `-- transform.py.............# `-- APIs for creating and manipulating homogeneous transformations. |-- mujoco.......................# Package containing utilities to interact with the Mujoco passive viewer. | |-- loaders.py...............# |-- Utilities for converting JaxSim models to Mujoco models. | |-- model.py.................# |-- Class providing high-level methods to compute quantities using Mujoco. | `-- visualizer.py............# `-- Class that simplifies opening the passive viewer and recording videos. |-- parsers......................# Package containing utilities to parse model descriptions (SDF and URDF models). | |-- descriptions/............# |-- Package containing the intermediate representation of a model description. | |-- kinematic_graph.py.......# |-- Definition of the kinematic graph associated with a parsed model description. | `-- rod/.....................# `-- Package to create the intermediate representation from model descriptions using ROD. |-- rbda.........................# Package containing the low-level rigid body dynamics algorithms. | |-- aba.py...................# |-- The Articulated Body Algorithm. | |-- collidable_points.py.....# |-- Kinematics of collidable points. | |-- contacts/................# |-- Package containing the supported contact models. | |-- crba.py..................# |-- The Composite Rigid Body Algorithm. | |-- forward_kinematics.py....# |-- Forward kinematics of the model. | |-- jacobian.py..............# |-- Full Jacobian and full Jacobian derivative. | |-- rnea.py..................# |-- The Recursive Newton-Euler Algorithm. | `-- utils.py.................# `-- Common utilities used in the current package. |-- terrain......................# Package containing resources to specify the terrain. | `-- terrain.py...............# `-- Classes defining the supported terrains. |-- typing.py....................# Module containing type hints. `-- utils........................# Package of common utilities. |-- jaxsim_dataclass.py......# |-- Utilities to operate on pytree dataclasses. |-- tracing.py...............# |-- Utilities to use when JAX is tracing functions. `-- wrappers.py..............# `-- Utilities to wrap objects for specific use cases on pytree dataclass attributes. ```

Credits

The RBDAs are based on the theory of the Rigid Body Dynamics Algorithms book by Roy Featherstone. The algorithms and some simulation features were inspired by its accompanying code.

The development of JaxSim started in late 2021, inspired by early versions of google/brax. At that time, Brax was implemented in maximal coordinates, and we wanted a physics engine in reduced coordinates. We are grateful to the Brax team for their work and showing the potential of JAX in this field.

Brax v2 was later implemented reduced coordinates, following an approach comparable to JaxSim. The development then shifted to MJX, which today provides a JAX-based implementation of the Mujoco APIs.

The main differences between MJX/Brax and JaxSim are as follows:

Contributing

We welcome contributions from the community. Please read the contributing guide to get started.

Citing

@software{ferigo_jaxsim_2022,
  author = {Diego Ferigo and Filippo Luca Ferretti and Silvio Traversaro and Daniele Pucci},
  title = {{JaxSim}: A Differentiable Physics Engine and Multibody Dynamics Library for Control and Robot Learning},
  url = {http://github.com/ami-iit/jaxsim},
  year = {2022},
}

Theoretical aspects of JaxSim are based on Chapters 7 and 8 of the following Ph.D. thesis:

@phdthesis{ferigo_phd_thesis_2022,
  title = {Simulation Architectures for Reinforcement Learning applied to Robotics},
  author = {Diego Ferigo},
  school = {University of Manchester},
  type = {PhD Thesis},
  month = {July},
  year = {2022},
}

People

Author Maintainers

License

BSD3