-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Robot gripper cannot grasp cloth (slipping problem) #199
Comments
Looks like there is coupling force between the gripper and the cloth as there is one particle moves seemingly due to the gripper. Could you provide the script you are running? |
Thank you for your response, here is the code, import genesis as gs ########################## init ########################## ########################## create a scene ########################## scene = gs.Scene( ########################## entities ########################## cloth_1 = scene.add_entity( ########################## build ########################## cloth_1.set_particle_position(0,np.array([0.0,0.0,0.25], dtype=np.float32)) motors_dof = np.arange(7) franka.set_dofs_kp( end_effector = franka.get_link('hand') qpos = franka.inverse_kinematics( for waypoint in path: for i in range(100): reach_pos = cloth_1.get_particles()[0] franka.control_dofs_position(qpos[:-2], motors_dof) franka.control_dofs_position(qpos[:-2], motors_dof) for i in range(200): for i in range(300): |
slipping.webm I tried to reduce the substeps and tried doing both force and position control for the end effector and it does not seem to help. The gripper is not able to pick up the cloth and maintain constant contact.
The text was updated successfully, but these errors were encountered: