Neha Patil (Editor)

Forward kinematics

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit
Forward kinematics

Forward kinematics refers to the use of the kinematic equations of a robot to compute the position of the end-effector from specified values for the joint parameters.

Contents

The kinematics equations of the robot are used in robotics, computer games, and animation. The reverse process that computes the joint parameters that achieve a specified position of the end-effector is known as inverse kinematics.

Kinematics equations

The kinematics equations for the series chain of a robot are obtained using a rigid transformation [Z] to characterize the relative movement allowed at each joint and separate rigid transformation [X] to define the dimensions of each link. The result is a sequence of rigid transformations alternating joint and link transformations from the base of the chain to its end link, which is equated to the specified position for the end link,

[ T ] = [ Z 1 ] [ X 1 ] [ Z 2 ] [ X 2 ] [ X n 1 ] [ Z n ] ,

where [T] is the transformation locating the end-link. These equations are called the kinematics equations of the serial chain.

In 1955, Jacques Denavit and Richard Hartenberg introduced a convention for the definition of the joint matrices [Z] and link matrices [X] to standardize the coordinate frame for spatial linkages. This convention positions the joint frame so that it consists of a screw displacement along the Z-axis

[ Z i ] = Trans Z i ( d i ) Rot Z i ( θ i ) ,

and it positions the link frame so it consists of a screw displacement along the X-axis,

[ X i ] = Trans X i ( a i , i + 1 ) Rot X i ( α i , i + 1 ) .

Using this notation, each transformation-link goes along a serial chain robot, and can be described by the coordinate transformation,

i 1 T i = [ Z i ] [ X i ] = Trans Z i ( d i ) Rot Z i ( θ i ) Trans X i ( a i , i + 1 ) Rot X i ( α i , i + 1 ) ,

where θi, di, αi,i+1 and ai,i+1 are known as the Denavit-Hartenberg parameters.

Kinematics equations revisited

The kinematics equations of a serial chain of n links, with joint parameters θi are given by

[ T ] = 0 T n = i = 1 n i 1 T i ( θ i ) ,

where i 1 T i ( θ i ) is the transformation matrix from the frame of link i to link i 1 . In robotics, these are conventionally described by Denavit–Hartenberg parameters.

Denavit-Hartenberg matrix

The matrices associated with these operations are:

Trans Z i ( d i ) = [ 1 0 0 0 0 1 0 0 0 0 1 d i 0 0 0 1 ] , Rot Z i ( θ i ) = [ cos θ i sin θ i 0 0 sin θ i cos θ i 0 0 0 0 1 0 0 0 0 1 ] .

Similarly,

Trans X i ( a i , i + 1 ) = [ 1 0 0 a i , i + 1 0 1 0 0 0 0 1 0 0 0 0 1 ] , Rot X i ( α i , i + 1 ) = [ 1 0 0 0 0 cos α i , i + 1 sin α i , i + 1 0 0 sin α i , i + 1 cos α i , i + 1 0 0 0 0 1 ] .

The use of the Denavit-Hartenberg convention yields the link transformation matrix, [i-1Ti] as

i 1 T i = [ cos θ i sin θ i cos α i , i + 1 sin θ i sin α i , i + 1 a i , i + 1 cos θ i sin θ i cos θ i cos α i , i + 1 cos θ i sin α i , i + 1 a i , i + 1 sin θ i 0 sin α i , i + 1 cos α i , i + 1 d i 0 0 0 1 ] ,

known as the Denavit-Hartenberg matrix.

Computer animation

The forward kinematic equations can be used as a method in 3D computer graphics for animating models.

The essential concept of forward kinematic animation is that the positions of particular parts of the model at a specified time are calculated from the position and orientation of the object, together with any information on the joints of an articulated model. So for example if the object to be animated is an arm with the shoulder remaining at a fixed location, the location of the tip of the thumb would be calculated from the angles of the shoulder, elbow, wrist, thumb and knuckle joints. Three of these joints (the shoulder, wrist and the base of the thumb) have more than one degree of freedom, all of which must be taken into account. If the model were an entire human figure, then the location of the shoulder would also have to be calculated from other properties of the model.

Forward kinematic animation can be distinguished from inverse kinematic animation by this means of calculation - in inverse kinematics the orientation of articulated parts is calculated from the desired position of certain points on the model. It is also distinguished from other animation systems by the fact that the motion of the model is defined directly by the animator - no account is taken of any physical laws that might be in effect on the model, such as gravity or collision with other models.

References

Forward kinematics Wikipedia