Hello,
I am using Klampt to simulate an environment for a Reinforcement Learning agent. RL requires quite a lot of iterations before it converges to a solution. Since every iteration the environment has to be simulated, I am trying to increase the simulation speed as much as possible. One of the major computational bottlenecks with the simulator is the Inverse Kinematics solver (almost one third of the computation time). Therefore, I was thinking of only simulating the position of the end-effector of my robot, and not simulating any of the parent links. That way I can avoid the IK solver, and only simulate the kinematics of the end-effector in Cartesian space.
My question is whether it is possible to do that, to only simulate the kinematics of the end-effector and ignoring all the parent links? So to simulate a kind of 'floating' robot end-effector, while keeping the physics and contact mechanics of the end-effector and rigid objects. All positions of the end-effector are always physically possible, so the collision behavior of the parent links can be completely ignored.
Thanks a lot for the help.
PS Great simulation toolbox! :)