-
Notifications
You must be signed in to change notification settings - Fork 5
Description
I am writing this as a reference as I might forget about it by next week. I will fix it in the next few days, but here are some issues,
-
PinBulletWrapper.get_force()
seems to return contact forces in the negative direction (clear on the z axis not so sure about the other directions). Would it make sense to flip it? I will look into pybullet documentation and why is this happening. -
The other issue with
PinBulletWrapper.get_force()
is that it returns only the active contacts, so we get a varying size list, would it make sense to store this list in the fixed number of end effectors, and set all in-active contacts to zero? or will that break too much code ? @jviereck -
@nrotella as I understand you added all the IMU functionality to the same wrapper? Just to confirm
PinBulletWrapper.get_base_imu_linacc()
andPinBulletWrapper.get_base_imu_angvel()
transform the IMU readings from IMU frame to base frame or is it the other way arround? but in order to do that I have to callPinBulletWrapper.compute_numerical_quantities(dt)
first ?
let me know what you guys think and I'll work on fixing/changing stuff if need be :)