Subscribe

Select Topics

Posts by Tag

See all

Latest Blog Post

How to Calculate a Robot's Forward Kinematics in 5 Easy Steps

Alex Owen-Hill
by Alex Owen-Hill. Last updated on May 26, 2022 5:14 PM
Posted on Nov 25, 2015 7:00 AM. 9 min read time

Calculating the Forward Kinematics is often the first step to using a new robot. But, how do you get started?

While there are some good tutorials available online, up until now there hasn't been a simple step-by-step guide for calculating Forward Kinematics.

Here's a simple guide to calculating the kinematics of any robotic manipulator.

[Since I first published this article in 2015, it has become one of our most popular articles ever! I've since updated and improved it, but the core simplicity remains the same..]

Calculating kinematics is a cornerstone skill for robotics engineers. But, kinematics can sometimes be a pain (e.g. understanding the difference between forward and inverse kinematics).

When I first started working in robotics research, I was often told: "go and calculate the Forward Kinematics of this robot".  The phrase is basically robotics research shorthand for "go and get familiar with this robot".

Calculating the forward kinematics is the vital first step when using any new robot in research, particularly for manipulators.

Even though I had learned the theory of kinematics in university, it wasn't until I had calculated various kinematic solutions for a few real robots that the whole process started to feel intuitive. Even then, because I was not calculating kinematics every day I had to go back to my notes to remind myself how to do it every time I encountered a new robot.

It would have been really helpful to have a step-by-step guide of which stages to go through. That way, I wouldn't have to read through hundreds of pages of academically written equations in textbooks.

A sort of kinematics "cheat sheet" would have been useful.

This post is exactly that cheat sheet. 

I'll primarily focus on the Devanit-Hartenberg (DH) approach to Forward Kinematics, as it's the most common. 

I hope you enjoy it!

Step 1: Get a pencil and paper

DH-PARAMETERS

It can be tempting to jump straight for your computer when starting with a new robot. However, even if the robot looks like a "standard" 6R manipulator (the most common robot type) I always sit down with a pencil and paper to draw out the kinematic diagram.

This simple task forces you to carefully consider the actual physical configuration of the robot, avoiding false assumptions that can wreak havoc later on during coding.

There are various ways to draw a kinematic chain. Pick whichever style you prefer.

I favor simple cylinders for the revolute joints and lines for the links, as shown in the image. Do a Google Image Search for "kinematic diagram" and see some of the different styles available.

As you draw, work out which way each joint moves and draw this motion as double-ended arrows onto the diagram.

Step 2: Figure out your axes

The next key step is to draw the axes onto each joint. The DH approach assigns a different axis to each movable joint.

If you set up your axes correctly then working with the robot will be easy. Set them up incorrectly and you will suffer countless headaches. These axes will be required by simulators, inverse kinematic solvers, and your colleagues on your team (nobody wants to solve a Forward Kinematic solution if someone else has already done it).

Have a look at this video to see how to set them up:

The two important axes to work out are:

  • Z-axis — The z-axis should lie on the axis of rotation for a revolute joint or axis of extension for a prismatic joint.
  • X-axis — The x-axis should lie along the "common normal", which is the shortest orthogonal line between the previous z-axis and the current z-axis (seriously, watch the video).
  • Y-axis — Once you've calculated the other two, this axis should fall into place by following the "right hand rule" (see below).

Personally, I draw the axes using the following coloring: z-axis (blue), x-axis (red) and y-axis (green). Incidentally, this is the coloring scheme that's used in the RViz visualizer from ROS, which I used extensively during my PhD.

Back in my undergraduate days, our lecturer encouraged us to make an axis "sculpture" out of three colored straws stuck into a sphere of blue-tack to explain the theory to us. Though this might seem a bit "playschool", it can be very helpful as you can position the sculpture next to the physical robot to make sure you've got the axes pointing in the right direction. For a virtual version of this, check out this interactive tool.

Alternatively, you can use the "right hand rule".

The right hand rule

A quick and easy way to remember the direction of your y-axis is to follow the right hand rule. This is a mnemonic (memory aid) used extensively in physics to remember the orientations of 3-dimensional axis. 

To use it, hold out your right hand in front of you, sticking out your thumb, index finger, and middle finger at 90 degrees to each other. Each finger then corresponds to an axis:

  • Thumb = z-axis. 
  • Index finger = x-axis. 
  • Middle finger = y-axis.

By orienting your thumb and index finger to follow the z and x axis of the robot joint, your middle finger will naturally fall into the direction of the y-axis. 

Step 3: Remember your end effector

ROBOTIQ-3-FINGER-DH-PARAMETERS

The goal of calculating the Forward Kinematics is to be able to calculate the end effector pose from the position of the joints.

Most Forward Kinematic tutorials will generalize the end effector as a single distance from the final joint. This is fine for a simple "open-close" gripper. However, as modern grippers are often more complicated than this, it's worth considering how the end effector operates.

For example, the Robotiq 3-Finger Adaptive Gripper has a few different gripping modes. Each mode will correspond to a slightly different desired end effector pose. If you want to pinch the object between its fingers, this will require a different distance than if you wanted to wrap the fingers around the object. 

You should always consider the end effector carefully when formulating the kinematic model.

Step 4: Calculate the DH parameters

Denavit-Hartenberg (DH) parameters are often required to enter the robot model into a simulator and start performing any sort of analysis on it.

The best way to visualize the DH parameters is to watch the video I already included above.

The DH parameters break down each joint of the robot into four parameters, each taken with reference to the previous joint. They are calculated in reference to the "common normal" described above. Note that if the previous z-axis intersects the current z-axis, which is often the case, the common normal has a length of zero.

  • d - the distance between the previous x-axis and the current x-axis, along the previous z-axis.
  • θ - the angle around the z-axis between the previous x-axis and the current x-axis.
  • a (or r) - the length of the common normal, which is the distance between the previous z-axis and the current z-axis
  • α - the angle around the common normal to between the previous z-axis and current z-axis.

Go through each joint on your drawing and write down the DH parameters for each joint. Each joint should have one value which is a variable, representing the actuated joint. 

For a more detailed explanation and some examples, I recommend this handout by Peter Corke or this chapter from Introduction to Robotics.

Alternatives to the DH parameters

The DH approach is the most common approach to Forward Kinematics, but it's not perfect. One of its failings is that it doesn't handle parallel z-axes very elegantly. There are various alternatives, including Screw Theory representations, Hayati-Roberts, and other geometric modelings (see this paper for a comparison). These may (or may not) be better approaches. However, most kinematic libraries do accept the DH parameters and for that reason, it's a reasonable approach to begin with.

Step 5: Combine parameters into a whole robot

The final step is to combine all of your DH parameters into an entire robot. There are two ways to do this, a hard way and an easy way:

The hard way: Create your own solver

The "purist" method of using the DH parameters is to "roll your own" Forward Kinematic solver using your favorite programming language. I've taken this approach myself in the past, though I probably wouldn't do it these days.

Once you have your DH parameters for each joint, you can use this method to code it into a Forward Kinematics solver:

  1. Find a library in your programming language which allows you to do matrix multiplication. Alternatively, code your own using the methods in this list
  2. For each joint of the robot, populate a new 4 x 4 matrix with the following values:

Forward_Kinematics_Matrix

  1. Multiply all of the matrices together, starting with the first joint all the way up to the end effector.
  2. The final T vector will contain the position of the end effector. The R matrix will contain the orientation of the end effector. 

If you just want to try this out with some values, without coding your own solver, you can use this handy online tool to create a worked example of a complete robot from its DH parameters.

In my experience, creating your own solver doesn't offer many more benefits than using an existing library. However, it is a good learning exercise. 

The easy way: Use existing libraries

A far more effective way to calculate Forward Kinematics, once you've got your DH parameters, is to use an existing library.

There are loads of kinematic software libraries and many of them do far more than just calculate Forward Kinematics. Most of them include Inverse Kinematic solvers, dynamics, visualization, motion planning and collision detection, to name just a few features. These libraries will transform your DH parameters into matrices, which are then multiplied together to calculate the relationship between joint positions and end effector pose.

Some good development libraries include Robotics Library, Orocos Kinematics and Dynamics Library, ROS MoveIt, OpenRave, RoboAnalyzer, and the Matlab Robotics Toolbox.

Even though you'll usually require Inverse Kinematics to actually control the robot, computing the Forward Kinematics is a necessary step to get familiar with any new robotic arm.

If you found this article useful, make sure to bookmark it so you can find it when you next encounter a new robot!

What is your favorite method of getting familiar with a new robot's kinematics? Do you prefer another method over the DH parameters? Have you got any questions on implementing Forward Kinematics in your robot? Tell us in the comments below or join the discussion on LinkedIn, Twitter or Facebook.

Doubled productivity on limited floor space: beyerdynamic case study

Leave a comment

Alex Owen-Hill
Written by Alex Owen-Hill
Alex Owen-Hill is a freelance writer and public speaker who blogs about a large range of topics, including science, presentation skills at CreateClarifyArticulate.com, storytelling and (of course) robotics. He completed a PhD in Telerobotics from Universidad Politecnica de Madrid as part of the PURESAFE project, in collaboration with CERN. As a recovering academic, he maintains a firm foot in the robotics world by blogging about industrial robotics.
Connect with the writer:
http://alexowenhill.co.uk/

Related posts

7 Things I Learned From Marketing Cobot Grippers

In the three years I’ve been working at Robotiq, I’ve been responsible for marketing several products, including the Robotiq...

Christine Giguère
By Christine Giguère - June 2, 2021
What's New In Robotics?  16.08.2019

Good morning. In this week's news mix: UR and Philips Corp. announce distributor agreement, ABI Research predicts huge growth...

Emmet Cole
By Emmet Cole - August 16, 2019
Robotiq Rings the NYC Stock Echange Closing Bell!

History was made in New-York City yesterday when a  Robotiq 2F-85 Adaptive Gripper teamed-up with a UR5e robot arm from...

David Maltais
By David Maltais - October 18, 2018