![]() |
mujoco package from stride repocommunication controller description hardware mujoco |
Package Summary
Tags | No category tags. |
Version | 0.0.0 |
License | BSD |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/well-robotics/stride.git |
VCS Type | git |
VCS Version | main |
Last Updated | 2025-01-05 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Yuhao Huang, Yicheng Zeng and Xiaobin Xiong
Authors
Mujoco Package
This package is modified from the open sourced ROS2 MuJoCo package from mindspace.inc.
It creates a simulation thread in MuJoCo with MJCF model file provided by description package. And established a node to send multiple sensor messages to ROS2.
Package Structure
MujocoMessageHandler.cpp
is the connection between MuJoCo and ROS2, it samples the required sensor data and publishes to according topics. This includes /ContactState
, /JointState
, /ImuData
.(Also check communication/msg for details).
simulation executable(main.cc) establishes the physics thread in MuJoCo
Installation Guide
This guide referenced this [installation instructions][https://gist.github.com/saratrajput/60b1310fe9d9df664f9983b38b50d5da], To download MuJoCo, please go check its [releases][https://github.com/google-deepmind/mujoco/releases]. This version of STRIDE uses [2.3.2][https://github.com/google-deepmind/mujoco/releases/tag/2.3.2]. Take 2.3.2 as an example, after downloading the zip file:
cd /home/username/
mkdir .mujoco
tar -xvf mujoco232-linux-x86_64.tar.gz -C ~/.mujoco/
Add these lines to your .bashrc
:
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/home/username/.mujoco/mujoco-2.3.2/lib
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib/nvidia
export PATH="$LD_LIBRARY_PATH:$PATH"
export LD_PRELOAD=/usr/lib/x86_64-linux-gnu/libGLEW.so
To test if the installation is successful, use the following line to test:
cd ~/.mujoco/mujoco210/bin
./simulate ../model/humanoid.xml
Things to notice
-
The hold-release procedure: It is realized with sim_helper. It first holds the floating base of the robot by giving a extremely large damping and stiffness, then slowly release it to the ground.
- The time variables are set locally.
- The fixed degrees of freedom are the ones on the floating base. They will remain a small value after it is released.
- Applying control to MuJoCo: check apply_ctrl() function in main.cc. It realized a PD+feedforward controller of motors in MuJoCo. The data is directly obtained from shared pointer in Message Handler Node.
- Launch file: The simulation-launch file launches simulator and controller simultaneously. The model xml file and the control yaml file are also specified here.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ros2launch | |
ament_lint_auto | |
ament_lint_common | |
rclcpp | |
communication | |
geometry_msgs | |
tf2 | |
tf2_ros | |
nav_msgs | |
sensor_msgs | |
std_msgs | |
description | |
cv_bridge | |
control_common_toolbox |