一个用于机器人研发的物理引擎,旨在帮助机器人、生物力学、图形和动画等领域的研究和开发(也包括其他需要快速准确模拟的领域)。

Copybara-Service 1802d9b1a7 Merge pull request #2069 from squarefk:main 1 day ago
.github 8bbf9c7b4f Rename `config.yaml` -> `config.yml`. 3 weeks ago
cmake d1e004aa97 Update version hashes in MuJoCo CMake files ahead of the 3.2.4 release. 1 week ago
dist ffdb800e45 Update the MuJoCo version for the 3.2.5 release following the 3.2.4 release. 6 days ago
doc 98478f8811 Minor changes to inline comments in mjModel and mjData headers. 1 day ago
include 98478f8811 Minor changes to inline comments in mjModel and mjData headers. 1 day ago
introspect 98478f8811 Minor changes to inline comments in mjModel and mjData headers. 1 day ago
mjx b00a7c6705 Add touch sensor to MJX. 1 day ago
model d646ba8de1 Update MuJoCo changelog with a video of the 100_humanoids model. 1 week ago
plugin 4998e7b392 Move flex damping to the engine and remove membrane and solid plugins. 1 month ago
python 1802d9b1a7 Merge pull request #2069 from squarefk:main 1 day ago
sample ffdb800e45 Update the MuJoCo version for the 3.2.5 release following the 3.2.4 release. 6 days ago
simulate ffdb800e45 Update the MuJoCo version for the 3.2.5 release following the 3.2.4 release. 6 days ago
src aa91f3c047 Fix bug in slider-crank transmission. 1 day ago
test a70aea918c Prevent duplicated pairs in active_pugins vector. 1 day ago
unity 36e8845599 Add actuator_moment Jacobian sparsity pattern to mjData. 1 day ago
.gitignore 3091665c16 Merge pull request #2122 from hartikainen:update-gitignore 2 weeks ago
.readthedocs.yml b1e185bb9e Fix ReadTheDocs config. 2 years ago
CMakeLists.txt ffdb800e45 Update the MuJoCo version for the 3.2.5 release following the 3.2.4 release. 6 days ago
CONTRIBUTING.md 7e5a7b76fc Change GitHub org name to `google-deepmind`. 1 year ago
LICENSE 1f7eaae62e Version 2.1: documentation, public API headers, and sample programs. 3 years ago
README.md 6881ce2437 Remove support for Python 3.8. 1 week ago
SECURITY.md 8ec3dd97a4 Add SECURITY.md. 2 years ago
STYLEGUIDE.md 6067048537 Deprecate `mju_rotVecMat` and `mju_rotVecMatT` in favor of `mju_mulMatVec3` and `mju_mulMatTVec3`. 4 months ago
banner.png 00576a3bf9 Update icons to match the new banner and add Windows version info. 2 years ago

README.md

MuJoCo

MuJoCo stands for Multi-Joint dynamics with Contact. It is a general purpose physics engine that aims to facilitate research and development in robotics, biomechanics, graphics and animation, machine learning, and other areas which demand fast and accurate simulation of articulated structures interacting with their environment.

This repository is maintained by Google DeepMind.

MuJoCo has a C API and is intended for researchers and developers. The runtime simulation module is tuned to maximize performance and operates on low-level data structures that are preallocated by the built-in XML compiler. The library includes interactive visualization with a native GUI, rendered in OpenGL. MuJoCo further exposes a large number of utility functions for computing physics-related quantities.

We also provide Python bindings and a plug-in for the Unity game engine.

Documentation

MuJoCo's documentation can be found at mujoco.readthedocs.io. Upcoming features due for the next release can be found in the changelog in the latest branch.

Getting Started

There are two easy ways to get started with MuJoCo:

  1. Run simulate on your machine. This video shows a screen capture of simulate, MuJoCo's native interactive viewer. Follow the steps described in the Getting Started section of the documentation to get simulate running on your machine.

  2. Explore our online IPython notebooks. If you are a Python user, you might want to start with our tutorial notebooks running on Google Colab:

    • The introductory tutorial teaches MuJoCo basics: Open In Colab
    • The LQR tutorial synthesizes a linear-quadratic controller, balancing a humanoid on one leg: Open In Colab
    • The least-squares tutorial explains how to use the Python-based nonlinear least-squares solver: Open In Colab
    • The MJX tutorial provides usage examples of MuJoCo XLA, a branch of MuJoCo written in JAX: Open In Colab
    • The differentiable physics tutorial trains locomotion policies with analytical gradients automatically derived from MuJoCo's physics step: Open In Colab

Installation

Prebuilt binaries

Versioned releases are available as precompiled binaries from the GitHub releases page, built for Linux (x86-64 and AArch64), Windows (x86-64 only), and macOS (universal). This is the recommended way to use the software.

Building from source

Users who wish to build MuJoCo from source should consult the build from source section of the documentation. However, please note that the commit at the tip of the main branch may be unstable.

Python (>= 3.9)

The native Python bindings, which come pre-packaged with a copy of MuJoCo, can be installed from PyPI via:

pip install mujoco

Note that Pre-built Linux wheels target manylinux2014, see here for compatible distributions. For more information such as building the bindings from source, see the Python bindings section of the documentation.

Contributing

We welcome community engagement: questions, requests for help, bug reports and feature requests. To read more about bug reports, feature requests and more ambitious contributions, please see our contributors guide and style guide.

Asking Questions

Questions and requests for help are welcome as a GitHub "Asking for Help" Discussion and should focus on a specific problem or question.

Bug reports and feature requests

GitHub Issues are reserved for bug reports, feature requests and other development-related subjects.

Related software

MuJoCo is the backbone for numerous environment packages. Below we list several bindings and converters.

Bindings

These packages give users of various languages access to MuJoCo functionality:

First-party bindings:

Third-party bindings:

:arrow_right: Click here for a live demo of MuJoCo running in your browser.

Converters

  • OpenSim: MyoConverter converts OpenSim models to MJCF.
  • SDFormat: gz-mujoco is a two-way SDFormat <-> MJCF conversion tool.
  • OBJ: obj2mjcf a script for converting composite OBJ files into a loadable MJCF model.

Citation

If you use MuJoCo for published research, please cite:

@inproceedings{todorov2012mujoco,
  title={MuJoCo: A physics engine for model-based control},
  author={Todorov, Emanuel and Erez, Tom and Tassa, Yuval},
  booktitle={2012 IEEE/RSJ International Conference on Intelligent Robots and Systems},
  pages={5026--5033},
  year={2012},
  organization={IEEE},
  doi={10.1109/IROS.2012.6386109}
}

License and Disclaimer

Copyright 2021 DeepMind Technologies Limited.

Box collision code (engine_collision_box.c) is Copyright 2016 Svetoslav Kolev.

ReStructuredText documents, images, and videos in the doc directory are made available under the terms of the Creative Commons Attribution 4.0 (CC BY 4.0) license. You may obtain a copy of the License at https://creativecommons.org/licenses/by/4.0/legalcode.

Source code is licensed under the Apache License, Version 2.0. You may obtain a copy of the License at https://www.apache.org/licenses/LICENSE-2.0.

This is not an officially supported Google product.