frankaemika / libfranka

C++ library for Franka research robots
https://frankaemika.github.io
Apache License 2.0
221 stars 147 forks source link

Is it possible to get Coriolis Matrix C(q,dq) from model handle directly? #115

Open thume4zzzz opened 2 years ago

thume4zzzz commented 2 years ago

I'm trying to realize collision detection myself and the term C^T * dq is required. However, the model handle getCoriolis can only return Coriolis force, but not Coriolis matrix C.

Of course, I can calculate C^T dq by C^T dq =\dot{M} * dq - Coriolis force, but is there more direct way to get it?