ecl_manipulators Documentation

ecl_manipulators

Deploys various manipulation algorithms, currently just feedforward filters (interpolations).

packageSummary

This group includes various structures and tools for generating manipulator trajectories (interpolating methods etc).

CompilingLinking

        #include <ecl/manipulators.hpp>

        // The classes
        using ecl::Trajectory;
        using ecl::WayPoint;

Since the manipulator classes are templatised headers, there is no need to directly link (however, it's dependencies will need linking).

usage

Trajectory generation is usually done either in the joint angle space or in the cartesian space. All the classes in this library are configured appropriately via the Angle Type enumeration (Cartesian or JointAngle) type used as a template argument.

WayPoints

These are often also called via points or nodes depending on the context. They are used here as a means of representing the state of a manipulator at a particular point. A rough sequence of these can be then utilised to generate an interpolation with a much finer granularity.

Joint Angle Trajectories

WayPoints

Joint angle waypoints require alot of configuration, so the waypoint class provides methods for the programmer to manually do so:

  Waypoint<4> waypoint;
  waypoint.name("Raised Position");               // String identifier (not req'd).
  waypoint.nominalRates(1.0);                     // Sets a common nominal rate to the next waypoint.
  waypoint.nominalRates = 1.0, 1.0, 0.8, 0.8;     // Sets specific angular rates to the next waypoint.
  waypoint.angles() = 1.57, 1.57, 0, 0;           // Joint angle specification.
  waypoint.rates() = 1.0, 0, 0, 0;           // Rates through a point (only used on first/last waypoints)
  waypoint.duration(3.00);                        // An alternative to setting nominalRates.

The current interpolations are designed to relieve alot of the detail involved in configuring waypoints and generating trajectories. Depending on the interpolation, they will often use a heuristic or apply constraints to best solve the following waypoint properties:

Practically, the interpolations use the nominalRates to initialise a guess for the waypoint timestamps. These are amended later to satisfy other interpolation constraints (such as maximum acceleration). If you set the nominalRate to 0.0, most interpolations will then look to the duration to set an initial guess for the waypoint timestamps.

Trajectories

All trajectory generating techniques work on the waypoint classfication given above. As noted above, one goal towards this is to try and make trajectory generation as smart as possible. I'd rather have it intelligently automate the generation of the data set on a little information as possible. Too often, trajectory generation requires alot of fiddling of the underlying data set, or guessing of parameters such as rates, accelerations and time values. Usually this guessing has no optimisation involved or intelligent heuristic applied.

The joint angle trajectory class applies this. It fulfills several features:

The following code illustrates a sample trajectory generation flow:

    WayPoint<2,JointAngles> waypoint;

    waypoint.name("Initial Position");
    waypoint.angles() = 1.0, 1.0;
    waypoint.nominalRates(1.0);
    trajectory.append(waypoint);

    // more waypoint definitions.

    waypoint.name("End Position");
    waypoint.angles() = 4.0, 4.0;
    waypoint.nominalRates(1.0);
    trajectory.append(waypoint);

    // set trajectory acceleration bounds
    trajectory.maxAccelerations(0.8);  // common
    // trajectory.maxAccelerations = 0.8, 0.8, 0.6, 0.6;  // joint specific bounds

    // interpolations
    // trajectory.quinticCubicSplineInterpolation();   // a quintic_polynomial-cubic_spline-quintic_polynomial.
    trajectory.tensionSplineInterpolation(4.0);        // tension spline with pre and post pseudo waypoints.
    // trajectory.smoothLinearSplineInterpolation();   // linear blend with smooth (quintic) corners, pre and post pseudo waypoints.

    // extracting a discretised trajectory
    for ( int i = 0; i <= n; ++i ) {
        double x = i*(trajectory.duration())/n;
        cout << x;
        cout << trajectory(0,x);
        cout << trajectory.derivative(0,x);
        cout << trajectory.dderivative(0,x) << endl;
    }

Interpolations

Commonly either a linear interpolation with blends or a variant of a cubic spline is used. On a cheap robot arm though, these have a few problems since the motors suffer greatly from backlash and inaccuracies.

To get around this, we utilise a few different ideas to ensure the following problems dont exist.

Quintic-Cubic-Quintic Interpolating Trajectories

For this, we attach a fully quintic polynomial at the front and back ends (first and last waypoints) and use a natural cubic spline in the middle. The natural cubic spline ensures C2 continuity and provides the connections to automatically ensure the quintics provide the zero'd boundary conditions.

Lastly, the interpolation algorithm firstly uses the waypoint nominal rate suggestions to define a rough time sequence and then uses an iterative technique to stretch the trajectory until the acceleration bounds are met.

Note, to configure everything for this interpolation algorithm, you will need:

Unfortunately, one problem with this is the quintic will often head in the wrong direction at the start of the motion so that it can meet whatever velocity and acceleration constraints are set up by the interior cubic spline at the second waypoint. To make sure this doesn't happen, you need to tune your waypoints carefully.

quintic_cubic_quintic_interpolation.png

Smoothed Linear Interpolating Trajectories

This interpolation is like the tension spline at very high tension. It uses linear segments and quintic corners, as well as applying the same pre-post pseudo waypoint trick to guarantee resting constraints at the boundaries. It's a good alternative to the tension spline when you want almost exactly predictable motions rather than natural human like curves.

To configure everything, proceed as for the quintic-cubic-quintic.

smooth_linear_interpolation.png

Tension Interpolating Trajectories

This interpolation is very similar to the quintic-cubic-quintic except that a tension spline is used in place of the natural spline and very small quintics are attached at the front and back via pseudo waypoints located very close to the actual starting and finishing waypoints.

A tension spline at low tension is just like the cubic (i.e. as tension -> 0.0, the spline becomes a cubic). By increasing the tension parameter to the interpolation algorithm, you can effectively tighten the polynomial until it starts looking more like the linear blend. This tends to provide more predictable motions and the acceleration is more tightly bound to zero most of the time (cubic spline accelerations will swing around fairly wildly).

To configure everything, proceed as for the quintic-cubic-quintic. The only addition is to supply a tension parameter when calling the interpolation algorithm.

tension_interpolation.png

unitTests

ChangeLog



ecl_manipulators
Author(s): Daniel Stonier
autogenerated on Thu Jun 6 2019 18:52:06