movel(pose, a=1.2, v=0.25, t=0, r=0)

Move to position (linear in tool-space)

See movej.

Parameters

pose: target pose (pose can also be specified as joint positions, then forward kinematics is used to calculate the corresponding pose)

a: tool acceleration [m/s^2]

v: tool speed [m/s]

t: time [S]

r: blend radius [m]

Example command: movel(pose, a=1.2, v=0.25, t=0, r=0)

  • Example Parameters:
    • pose = p[0.2,0.3,0.5,0,0,3.14] -> position in base frame of x = 200 mm, y = 300 mm, z = 500 mm, rx = 0, ry = 0, rz = 180 deg
    • a = 1.2 -> acceleration of 1.2 m/s^2
    • v = 0.25 -> velocity of 250 mm/s
    • t = 0 -> the time (seconds) to make the move is not specified.
    • If it were specified the command would ignore the a and v values.
    • r = 0 -> the blend radius is zero meters.