Torque filter for manipulator for safety control.
D. Lee, D. Ko, W. K. Chung and K. Kim, "Maximal Manipulation Framework Using Quadratic Programming for a Teleoperated Robotic System with Articulated Bodies." 2022 International Conference on Robotics and Automation (ICRA), IEEE, 2022.
When the controller controls the manipulator, it serves to filter the output of the controller so that it does not exceed the constraint of the manipulator. The joint constraints are expressed as follows.
We solve with QP the process of finding
In the above formula,
By organizing the robot dynamics equation below, we can organize the acceleration
Therefore, we can change linear constraints about
So, we can make linear constraints of torque with Inverse of Mass Matrix M:
This project utilizes the following package:
- qpOASES: A library for efficiently solving quadratic programming problems in real-time.
The source code for the package is included in the repository.
- Create a Build Directory:
mkdir build cd build
- Build:
cmake .. cmake --build .
- Run the Executable:
cd Debug ./QP_based_motion_filter
Have to change enum parameters in header file.
The degree of freedom and the number of constraints must be changed according to the situation.
enum
{
DOF = 6, // degree of freedom of the manipulator
CONSTRAINTS_NUM = 4, // constraints set num
k_slack = 6, // slack variable num
};
Very simple example of how to use qpfilter.