ROS2动力学控制器项目

ROS2动力学控制器项目

https://github.com/Tianyi-Wang-1206/ROS-2-Dynamics-Controller-for-Lightweight-6-Axis-Robotic-Arms

ROS 2 Dynamics Controller for Lightweight 6-Axis Robotic Arms

This repository presents a high-fidelity, mathematically rigorous 6-axis robotic arm simulation. Initiated by an asynchronous and detailed GUI (based on PyQt5), the system orchestrates high-level motion using MoveIt2 , leveraging TRAC-IK for robust numerical solutions to inverse kinematics and the Pilz trajectory planning engine for deterministic Cartesian paths (LIN/CIRC). At the core, Controller Chaining (based on ros2_control ) interpolates these trajectories into a tight 1000Hz reference for a custom Computed Torque Control (CTC) controller. To ensure physical realism, the CTC bypasses MuJoCo 's default PID joints to run the physics engine in pure effort mode . The CTC processes the feedback states via a Kalman Filter state observation model to reconstruct noise-free joint velocities, and executes Pinocchio dynamics calculations to compute rigid-body inertia, gravity, and Coriolis matrices. Combined with friction/armature compensation (smoothly neutralizing viscous damping, Coulomb stiction, and motor rotor inertia), this architecture achieves a tracking precision of <0.01 mm.

To bridge the gap between nominal simulation parameters and real-world physical discrepancies, an automated system identification (SysID) framework is integrated to extract joint-level viscous/Coulomb friction and motor armature coefficients, which are difficult to measure directly during manufacturing. Utilizing a bounded Fourier excitation trajectory coupled with an offline Least-Squares solver, the identified parameters align closely with the ground-truth physical properties defined in the URDF and MuJoCo XML files. Furthermore, the architecture incorporates a robust software emergency stop (E-Stop) and active recovery state machine. Upon triggering, it overrides high-level commands to execute precise, limit-aware deceleration trajectories that safely halt the manipulator, while providing a seamless recovery sequence back to the active closed-loop tracking state.

To facilitate real-time diagnostics and visual verification of tracking performance, the framework incorporates a synchronized "shadow robot" virtual twin. This visualization layer is driven directly by the real-time C++ CTC controller via a lock-free RealtimePublisher. It renders the exact internal target commands (q_target_) at 1000Hz (downsampled to 200Hz for RViz), representing the manipulator's theoretical kinematic state under zero-disturbance conditions. The shadow robot depicts pure kinematic targets, while the closed-loop CTC controller forces the physical manipulator to overcome physical disturbances (gravity, Coriolis, joint friction, etc.) to track this reference. Under standard operating conditions (including software E-Stop), the physical robot tracks the shadow twin tightly (deviation is indistinguishable to the human eye). However, there will be significant visible tracking deviation during System Identification because the friction and motor armature compensations are temporarily deactivated, allowing the algorithm to isolate and extract these specific raw unmodeled dynamics.

For detailed mathematical derivations, please refer to Theory.pdf.

⚠️ Notice: The robot model used in this simulation is the UFactory Lite6 , sourced from the official MuJoCo Menagerie. This repository is an independent open-source project designed for research and educational purposes.

📑 Table of Contents

  1. System Architecture
  2. Core Features & Demonstrations
  3. Quick Start & Reproduction Guide
  4. Future Work
  5. Acknowledgements
  6. Disclaimer
  7. Contact

🧠 System Architecture

The system's architecture is illustrated in the diagram below:

🎥 Core Features & Demonstrations

1. Industrial Motion Planning (PTP, MoveL, MoveC)

  • PTP (Point-to-Point): Joint space planning to specific angles or Cartesian poses (MoveP) via TRAC-IK:
  • MoveL: Deterministic linear Cartesian interpolation via the Pilz planner:
  • MoveC: Circular Cartesian interpolation using an auxiliary midpoint frame:

(Note: For MoveL and MoveC, it is recommended to lower the velocity and acceleration scale, to make sure that the trajectory planning doesn't exceed the robot's physical limits; otherwise, trajectory planning may fail.)

2. Automated System Identification

  • The automated system identification executes bounded Fourier excitation trajectories, records q,q˙,τ, and utilizes Least Squares Optimization to extract exact Armature, Viscous Friction, and Coulomb Friction matrices.

3. The "Shadow Robot" Debugging Twin

  • This is a collision-free, cyan-colored digital twin that runs alongside the main robot. It reflects the controller's target commands, allowing instant visual verification of tracking error and dynamic deviations.

4. Software E-Stop and Recovery

  • The emergency stop overrides MoveIt and generates a safe deceleration trajectory based on physical kinematic limits.

🚀 Quick Start & Reproduction Guide

You can run this project using either a containerized Docker environment (recommended for avoiding dependency conflicts) or natively on Ubuntu 22.04.

📋 Prerequisites

Download the repository and organize your workspace as follows:

复制代码
~/lite6_ws/
├── mujoco-3.9.0/          # MuJoCo binaries (provided in this repository)
├── src/                   # Source code (lite6_bringup, lite6_controllers, etc.)
├── Dockerfile             # Docker configuration
├── run_docker.sh          # Container boot script
└── README.md

🐳 Option A: Docker Deployment

This method isolates the environment and requires no local ROS 2 installation. Ensure you have a Linux host (Ubuntu 22.04 or higher), Docker and the NVIDIA Container Toolkit (recommended for GUI rendering and GPU acceleration).

1. Start the Docker Environment:

复制代码
cd ~/lite6_ws
chmod +x ./run_docker.sh
./run_docker.sh

(Note: The script automatically detects your GPU and chooses suitable drivers if you are using an Intel/AMD GPU or no GPU. It also automatically mounts the src folder, so you do not need to rebuild the image when modifying code).

2. Build and Launch (Inside Docker):

复制代码
colcon build --symlink-install
source install/setup.bash
ros2 launch lite6_bringup system_bringup.launch.py

💻 Option B: Native Deployment (Ubuntu 22.04)

If you prefer running natively, ensure you have ROS2 Humble installed on your host machine.

1. Setup MuJoCo Binaries: Move the provided MuJoCo binaries to your home directory and link them to your .bashrc.

复制代码
mkdir -p ~/.mujoco
cp -r ~/lite6_ws/mujoco-3.9.0 ~/.mujoco/

# Add MuJoCo paths to your bash profile
echo 'export MUJOCO_DIR=~/.mujoco/mujoco-3.9.0' >> ~/.bashrc
echo 'export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$MUJOCO_DIR/lib' >> ~/.bashrc
source ~/.bashrc

2. Install ROS 2 Dependencies (rosdep): Use rosdep to automatically install all required packages (Pinocchio, MoveIt2, etc.).

复制代码
cd ~/lite6_ws
rosdep update
rosdep install --from-paths src --ignore-src -r -y

3. Compile and Launch:

复制代码
colcon build --symlink-install
source install/setup.bash
ros2 launch lite6_bringup system_bringup.launch.py

🔮 Future Work

This framework is actively evolving. Upcoming features include:

  • Analytical Inverse Kinematics via Symbolic Computation: Transitioning from the current numerical IK solver to a mathematically exact, closed-form analytical IK solution. Derived using symbolic computation software, this will reduce IK computation time from milliseconds to nanoseconds, guarantee thread safety, and provide all possible joint configurations instantly.
  • Deterministic Trajectory Planning: Instead of using sampling-based trajectory planners, we combine analytical IK solutions with time parameterization to achieve deterministic trajectory planning for MoveJ, MoveP, MoveL, and MoveC commands.
  • Collision Detection: When calculating IK and planning trajectories, the collision mesh of the robot model is computed to prevent the robot from colliding with itself or the worktable.

(Note: These new features have been implemented; please refer to link)

🙏 Acknowledgements

I would like to sincerely thank the creators and maintainers of the following open-source projects and organizations:

📌 Disclaimer

This is a personal, open-source project. I am not affiliated with, sponsored by, or endorsed by any commercial entities mentioned in this repository. All trademarks and registered trademarks are the property of their respective owners. The software is provided "as is", without warranty of any kind.

相关推荐
liuyunshengsir1 小时前
Codex Harness 安全沙箱机制原理:AI 编程代理如何安全地执行命令
人工智能·安全
TMT星球1 小时前
夏智天枢平台发布,云从科技分享AI应用服务商实践
人工智能·科技·百度
dunge20261 小时前
ChatGPT Plus / Pro 与 Codex 深度实战指南:2026年9月5日版——从模型能力对比到代码生成工作流全解析
人工智能·chatgpt
海浪仙人掌1 小时前
应收账款分析如何操作?应收账款分析有哪些注意事项?
数据库·人工智能
东方佑1 小时前
元可塑性循环单元(Meta-RU)与 GRU 的对比研究与混合设计
人工智能·深度学习·gru
Elastic 中国社区官方博客1 小时前
在 Elasticsearch 中回填时间序列数据:通过批量 API 加载数月的历史指标数据
大数据·运维·数据库·人工智能·elasticsearch·搜索引擎·全文检索
LlmCraft|大模型工程实践1 小时前
08 预训练语言模型:BERT 与 GPT
人工智能·深度学习·nlp
feasibility.1 小时前
ABot-World-0:当一块 RTX 5090 能编织无限世界——交互式世界模型的高德解法
人工智能·aigc·视频·地图·具身智能·英伟达·世界模型
leoZ2312 小时前
第 6 篇:SchemaForm 渲染器核心实现
前端·javascript·vue.js·人工智能·神经网络·机器学习·自然语言处理