How could compute joint velocity given end effector twist?

Issue #42 wontfix
Scott_Yang created an issue

How could compute joint velocity given end effector twist? For example, given the linear and angular speed of end effector, it's possible to compute joint velocity with Trac-IK??

THANK YOU!

Comments (2)

  1. tkelestemur

    I was also looking at this but as I understand from the source code, inverse velocity kinematics is not implemented. It would be great to have to have this feature as well.

  2. Patrick Beeson Account Deactivated

    TRAC-IK simply solves for joint positions given Cartesian ones. It was meant to be a drop-in replacement for KDL's CartToJnt() functions which takes in Frames and spits out joint values.

    You could easily use TRAC-IK (with Minimum Distance solving) to solve for some point in time along a velocity profile of the end effector (say 100ms ahead) and then divide the joint deltas by this time interval to estimate joint velocities. But this is something to implement in the user's code.

  3. Log in to comment