Jesse Haviland and Peter Corke

Under Review

Preprint Avaliable Here

MMC can be used on any serial-link manipulator regardless of whether it is redundant. For example, MMC will work with 7 degree-of-freedom robots such as the Fanka-Emika Panda and the 6 degree-of-freedom robots such as the Universal Robotics 5 manipulator. In short, our reactive controller maximises the manipulability of a robot while guiding the end-effector to a desired pose, and avoiding joint limits.

Cover Image

Resolved-rate motion control of redundant serial-link manipulators is commonly achieved using the Moore-Penrose pseudoinverse in which the norm of the control input is minimized. However, as kinematic singularities are a significant issue for robotic manipulators, we propose a Manipulability Motion Controller which chooses joint velocities which will also increase the manipulability of the robot. The manipulability measure has a complex non-linear relationship with the robot’s joint configuration and in this paper we derive the manipulability Jacobian which directly relates joint velocities to the rate of change of manipulability. Furthermore, we use the manipulability Jacobian within a constrained quadratic program to create an improved resolved-rate motion controller for redundant robots. The resulting real-time controller provides joint velocities which achieve a desired Cartesian end-effector velocity while also maximising the robot’s manipulability.



As shown in the table below, MMC provides major improvements to both manipulability and failures when compared to resolved-rate motion control (RRMC, the standard reactive motion controller which does not optimise for manipulability), Park [1] (does optimise for manipulability) and Baur [2] (optimises for manipulability and tries to avoid joint position limits). Park and Baur both rely on the robot being redundant (having greater than 6 degrees-of-freedom) to work. Consequently, they provide no improvement on the 6 degree-of-freedom UR-5 manipulator.

Robot Measure RRMC (Baseline) Park [1] Baur [2] MMC (ours)
Panda Mean Manipulability 0.0693 0.0799, +15% 0.0785, +13.2% 0.0942, +35.9%
  Mean Final Manipulability 0.0692 0.0822, +18.4% 0.0801, +15.7% 0.0955, +38.0%
  Failures 12.4% 18.5% 12.7% 8.0%
UR-5 Mean Manipulability 0.0433 0.0433, +0.0% 0.0433, +0.0% 0.0563, +30.0%
  Mean Final Manipulability 0.0381 0.0381, +0.0% 0.0381, +0.0% 0.0460, +20.7%
  Failures 39.7% 39.7% 39.7% 25.6%

We provide an implementation for Park’s controller here, and Baur’s controller here.


What is Manipulability?

The manipulability measure describes how well-conditioned the manipulator is to achieve an arbitrary velocity. It is a scalar which describes the volume of a 6-dimensional ellipsoid created using the kinematic Jacobian. If this ellipsoid has a large volume and is close to spherical, then the manipulator can achieve any arbitrary end-effector velocity easily. However, this 6-dimensional ellipsoid is impossible to display.

The first three rows of the kinematic Jacobian represent the translational component of the end-effector velocity. While the last three rows represent the end-effector angular velocity. Therefore, by using only the first or last three rows of the kinematic Jacobian, the 3-dimensional translation or angular velocity ellipsoids respectively can be found and visualised. For example, see the two translational velocity ellipsoids displayed Below created at two different robot configurations.

The ellipsoid has three radii, along its principle axes. A small radius about an axis represents the robots inability to achieve a velocity in the corresponding direction. At a singularity, the ellipsoid’s radius becomes zero about the corresponding axis. Therefore the volume becomes zero. If the manipulator’s configuration is well conditioned, these ellipsoids will have a larger volume.

Manipulability

End-effector angular velocity ellipsoids created using the kinematic Jacobian at two different robot configurations q1 and q2, on a Panda robot. The ellipsoid depicts how easily the robot’s end-effector can move with an arbitrary angular velocity. The left ellipsoid shows the manipulator’s configuration is well conditioned to rotate the end-effector in any direction. While the right configuration is near singular as the end-effector will struggle to rotate around the y or z-axis. This directly corresponds to the manipulability denoted by m1, and m2.


How do I use it?

We have a created a robotics Python library called Robotics Toolbox for Python which allows our algorithm to be used an any robot. We use the library qpsolvers to solve the optimisation function. However, you can use whichever solver you wish.

Install Robotics Toolbox for Python from github

git clone https://github.com/petercorke/robotics-toolbox-python.git
cd robotics-toolbox-python
pip3 install -e .

The following example uses our Swift simulator. Install Swift from github

git clone https://github.com/jhavl/swift.git
cd swift
pip3 install -e .

Position-Based Servoing Example

import roboticstoolbox as rtb
import spatialmath as sm
import numpy as np
import qpsolvers as qp

# Launch the simulator Swift
env = rtb.backends.Swift()
env.launch()

# Create a Panda robot object
panda = rtb.models.Panda()

# Set joint angles to ready configuration
panda.q = panda.qr

# Add the Panda to the simulator
env.add(panda)

# Number of joint in the panda which we are controlling
n = 7

# Set the desired end-effector pose
Tep = panda.fkine(panda.q) * sm.SE3(0.3, 0.2, 0.3)

arrived = False

while not arrived:

    # The pose of the Panda's end-effector
    Te = panda.fkine(panda.q)

    # Transform from the end-effector to desired pose
    eTep = Te.inv() * Tep

    # Spatial error
    e = np.sum(np.abs(np.r_[eTep.t, eTep.rpy() * np.pi/180]))

    # Calulate the required end-effector spatial velocity for the robot
    # to approach the goal. Gain is set to 1.0
    v, arrived = rtb.p_servo(Te, Tep, 1.0)

    # Gain term (lambda) for control minimisation
    Y = 0.01

    # Quadratic component of objective function
    Q = np.eye(n + 6)

    # Joint velocity component of Q
    Q[:n, :n] *= Y

    # Slack component of Q
    Q[n:, n:] = (1 / e) * np.eye(6)

    # The equality contraints
    Aeq = np.c_[panda.jacobe(panda.q), np.eye(6)]
    beq = v.reshape((6,))

    # The inequality constraints for joint limit avoidance
    Ain = np.zeros((n + 6, n + 6))
    bin = np.zeros(n + 6)

    # The minimum angle (in radians) in which the joint is allowed to approach
    # to its limit
    ps = 0.05

    # The influence angle (in radians) in which the velocity damper
    # becomes active
    pi = 0.9

    # Form the joint limit velocity damper
    Ain[:n, :n], bin[:n] = panda.joint_velocity_damper(ps, pi, n)

    # Linear component of objective function: the manipulability Jacobian
    c = np.r_[-panda.jacobm().reshape((n,)), np.zeros(6)]

    # The lower and upper bounds on the joint velocity and slack variable
    lb = -np.r_[panda.qdlim[:n], 10 * np.ones(6)]
    ub = np.r_[panda.qdlim[:n], 10 * np.ones(6)]

    # Solve for the joint velocities dq
    qd = qp.solve_qp(Q, c, Ain, bin, Aeq, beq, lb=lb, ub=ub)

    # Apply the joint velocities to the Panda
    panda.qd[:n] = qd[:n]

    # Step the simulator by 50 ms
    env.step(0.05)

Citation

If you use this work, please cite:

@article{haviland2020mmc,
  title={A purely-reactive manipulability-maximising motion controller},
  author={Haviland, J and Corke, P},
  journal={arXiv preprint arXiv:2002.11901},
  year={2020}
}

Acknowledgements

This research was supported by the Australian Centre for Robotic Vision (ACRV) and the Queensland Universilty of Technology Centre for Robotics (QCR).

thanks

References

[1] J. Park, C. Wangkyun, and Y. Youngil, “Computation of gradientof manipulability for kinematically redundant manipulators includingdual manipulators system,” Transactions on Control, Automation and Systems Engineering, vol. 1, no. 1, pp. 8–15, 1999.

[2] J. Baur, J. Pfaff, H. Ulbrich, and T. Villgrattner, “Design and develop-ment of a redundant modular multipurpose agricultural manipulator,” in 2012 IEEE/ASME International Conference on Advanced Intelligent Mechatronics (AIM), 2012, pp. 823–830.