# Introduction [MuJoCo](https://mujoco.org/) stands for Multi-Joint dynamics with Contact. It is a physics engine for simulation and has been open source. To get more details, see these repositories: [MuJoCo](https://github.com/deepmind/mujoco) and [MuJuCo-py](https://github.com/openai/mujoco-py). In this repo, some mujoco example scripts and the xml files of different Unitree robots are provided, including A1, Aliengo, Laikago and Go1. To simulate different robots, the corresponding xml files are needed. Here we introduce how to generate xml files from urdf and how to use them. # Generate XML In MuJoCo, robots are described by xml files. Before we generate the xml file, we need the urdf file of the robot. There are many ways to obtain urdf, and these methods are not discussed here. After generating the urdf, you must ensure that all meshes are stl files. If you are using meshes in obj or other formats, convert them to stl. ## Edit URDF Before converting urdf to xml, some parts of urdf file need to be edited. Take "/data/urdf/a1.urdf" as an example. 1. Add MuJoCo tag Add the following line after the robot description line: ``` ``` 2. Add a floating joint between robot body and world frame Since MuJoCo set the base link as fixed by default, a free joint has to be manually added between robot body and world frame: ``` ``` ## Generate xml MuJoCo provides an executable file for converting urdf to XML. This file is under "/mujoco/bin". To use it: ``` ./compile /path/to/model.urdf /path/to/model.xml ``` ## Edit xml file After converting the urdf to xml, some parts of xml file need to be edited. 1. Set environment Add the following line after " size njmax="500" nconmax="100" " ```