Hi,
I got the weight, payload center and payload inertia for my EOAT. However, my EOAT is rotated 75 degrees around the z axis relative the robot coordinate system
To translate the payload center to the new coordinates is straight forward:
x' = x.cos(v) - y.sin(v)
y' = x.sin(v) + y.cos(v)
z' = z
What I can't figure out is if this formula is valid for the payload inertia too. Using it gives reasonable values but I think it is wrong.
Help would be appreciated.