2020-12-11 09:20:51 -0500 | received badge | ● Taxonomist |
2019-03-21 04:06:35 -0500 | received badge | ● Popular Question (source) |
2019-03-21 04:06:35 -0500 | received badge | ● Notable Question (source) |
2018-11-09 08:33:46 -0500 | received badge | ● Self-Learner (source) |
2018-11-09 08:33:46 -0500 | received badge | ● Necromancer (source) |
2018-10-15 08:13:45 -0500 | received badge | ● Self-Learner (source) |
2018-10-15 08:13:45 -0500 | received badge | ● Necromancer (source) |
2018-10-15 08:13:45 -0500 | received badge | ● Teacher (source) |
2018-09-19 08:32:31 -0500 | commented question | Issue with the post-grasp motion in gazebo Could you post a video (even to YouTube) showing the problem? SimpleScreenRecorder is an easy-to-use screen-capture app |
2018-09-17 14:03:18 -0500 | marked best answer | Friction insufficient in grasping simulation Update 2 Following some advice below I changed the ROS controller from Original question For an application where a manipulator picks up a cylinder I have created a primitive gripper with a ROS SimpleTransmission and EffortJointInterface. The Gazebo model for the cylinder comes from an STL file. This is using Gazebo 9 and ROS Kinetic. In Gazebo the gripper can push the cylinder around but it does not pick it up; the cylinder just slides through the gripper as shown in the animation. I've changed the friction coefficients in both the gripper urdf and the cylinder sdf to 100.0 (this question used to say 99999.9 but following an answer below I made them 100.0 instead). I also reduced the mass of the cylinder. The effort limit on the joint I set to 999999.9, just to try to get it to grip really hard. The integral gain is 1.0 and the robot pauses after gripping to give time for the error integral to grow (the cylinder keeps the gripper from closing all the way). Part of the gripper urdf and the entire cylinder sdf are pasted below the animation. Can you tell me what I need to do to get a gripper to pick up this object? Update: Because I thought perhaps there was insufficient contact between the cylinder and flat gripper, I changed the object model to a block and made the gripper taller. Like the cylinder, the block has mass of 0.1 and friction coefficients of 100. This animation shows that the result is the same as before. Here is the result of View --> Contacts. Part of gripper urdf Cylinder sdf (more) |
2018-09-17 14:02:41 -0500 | answered a question | Friction insufficient in grasping simulation The cause behind this unrealistic interaction (that is, this lack of friction) is the use of PositionJointInterface for |
2018-09-17 14:02:34 -0500 | marked best answer | Grasping unable to lift object Grasping is not working in this primitive case I've made. The object is a box of mass 1 and default friction and contact parameters. The gripper uses two prismatic joints to move two c-shaped links together. All these are shown in this image. Note the gripper-joint coordinate frames (the x- and z-direction vectors are visible). When the gripper closes on the box and the robot then moves upward, the box does not get lifted, as shown in this animation (it's for a taller gripper than above but the behavior is identical, also the gripper in the animation used just one prismatic joint). Since the normal force between the gripper and box is 200 N (that's what I have the joint effort set at, as shown in the sdf below) then the lifting force should be at least 200 N, while 9.81 N should suffice to lift the box. Do you have an idea why the box doesn't go up? The following plots were made via to graph the x and z components of the joint forces for the two prismatic gripper joints. In this one the joints are controlled with the For this plot the gripper friction coefficient is changed to 100, which appears to have made no change. The final plot is with mu=100 and using the Update In an attempt to circumvent this problem I made an object that's wider in the middle and gripper blocks to match it. In theory, if the gripper stayed at its closed position then friction would not be required for lifting the object. I increased the effort limit on the joints from 200 to 500. With 'EffortJointInterface' the same problem occurs as with the box, and with the To battle the instability I changed max_vel and min_depth on both the gripper and object to 0 and 0.001, respectively. Alas, the simulation remained unstable with Here is an animation and force plot when using Here is an animation and force plot when using Here is the sdf of the object. (more) |
2018-09-17 14:01:58 -0500 | answered a question | Grasping unable to lift object The cause behind this unrealistic interaction (that is, this lack of friction) is the use of PositionJointInterface for |
2018-09-17 13:58:37 -0500 | marked best answer | Physics problem with simple movement of grasped object The robot tool is a prismatic gripper with four rods that slip into matching holes on the object to be grasped. Using this gripper to move the object works fine for motion perpendicular to the rod axes. In the video, for example, the rods are parallel to the world x-axis so motion in the z-y plane is fine; the robot lifts the object then translates in the negative y-direction okay. I think the problem is that the friction force is not being computed well because when the robot translates in the x-direction the object seems to stay put until it reaches the end of the rod and then it goes berserk. (If you look closely in the second video it can be seen that the gripper starts to move to the right and the object stays still. I guess the object crosses the camera in that video so we get to see the holes and rods inside the object.) There is a second reason I think the friction calculation is to blame: a different pick-and-place simulation I made this year had problems lifting objects via friction. See Question 1, Question 2, and Question 3. ========== update: This video where I replaced the gripper with a rigid forklift-type attachment lends weight, I think, to the idea that the problem is due to physics (friction?) and not the ROS controller or something. ========== I've tried using all four physics engines and modifying physics tags in the world file, as well as collision surface tags in both the object sdf and the gripper urdf. It's apparent that changing these parameters has some effect (though mu1 and mu2 don't make any difference) but the problem persists. The files are pasted below. It also seems to me that this could be a problem to do with Gazebo 9, which is what I moved to because the previous project had a mobile base that could not move due to this bug with Gazebo 7 and ros_control. Since this simulation does not have a mobile base I will try reverting to Gazebo 7 to see if that fixes the gripping problem. update: The behavior is identical with Gazebo 7. I've seen the same thing on two computers running Gazebo 9 and now one computer running Gazebo 7. An additional tidbit: if the mass of the object is too high (though still less than 1) it will fall during the upward motion. So that's fun :-/ World file: Object sdf: (more) |
2018-09-17 13:57:51 -0500 | answered a question | Physics problem with simple movement of grasped object The cause behind this unrealistic interaction (that is, this lack of friction) is the use of PositionJointInterface for |
2018-09-16 20:46:58 -0500 | edited question | Got controller gains for six-axis manipulator? Got controller gains for six-axis manipulator? Do you have working PID gains for the effort_controllers/JointTrajectoryC |
2018-09-16 20:46:26 -0500 | asked a question | Got controller gains for six-axis manipulator? Got controller gains for six-axis manipulator? Do you have working PID gains for the effort_controllers/JointTrajectoryC |
2018-09-13 12:59:47 -0500 | received badge | ● Famous Question (source) |
2018-09-06 09:50:40 -0500 | received badge | ● Nice Question (source) |
2018-09-06 09:50:38 -0500 | received badge | ● Notable Question (source) |
2018-09-05 09:52:50 -0500 | edited question | Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? There are a few Gazebo simu |
2018-09-05 09:51:11 -0500 | edited question | Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? There are a few Gazebo simu |
2018-09-05 09:50:55 -0500 | received badge | ● Popular Question (source) |
2018-09-04 09:34:42 -0500 | edited question | Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? There are a few Gazebo simu |
2018-09-04 09:34:02 -0500 | edited question | Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? There are a few Gazebo simu |
2018-09-04 09:33:07 -0500 | asked a question | Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? Anyone who's succeeded with grasping using ROS and Gazebo, what advice do you have to offer? There are a few Gazebo simu |
2018-08-23 11:57:25 -0500 | marked best answer | Mobile arm simulation behaves strangely when adding ros_control plugin Greetings. My model combining a simple mobile base with the UR10 acts strangely when I add which is needed for controlling the UR10 joints. The strange behavior is that the mobile robot resists motion (or maybe it's just the mobile base that does this). Two examples: (1) If I publish a large velocity twist to the cmd_vel topic for the differential_drive_controller on the mobile base the two wheels spin quickly but the robot rotates only very slowly. (2) If I publish a positive z-position to set_model_state, effectively dropping the robot from this height, it falls very slowly to the ground. It falls so slowly that I was easily able to select the area to grab for this screenshot. (The gap between the mobile base and the arm base is normal for the UR10. It's present even with the ur_gazebo ur10.launch simulation.) The "real time factor" is 1.00 so it's not as if the simulation is running slowly when the plugin is added. When I don't add the plugin the robot arm is floppy but it moves quickly, as one would expect (the base moves it around at the desired rate and it falls as fast as normal). The two controllers both seem to be working well. It's just that things overall get weird when I add the arm_controller. If I keep it and remove the differential_drive_controller the strange behavior is still present. I will look through the husky simulator with UR5 enabled to try to find what is wrong with my robot. When publishing an arm pose to arm_controller/command the manipulator moves at a reasonable speed relative to its base but the overall mobile robot is still very slow. For example, if I drop it from two meters and publish a manipulator pose the arm moves fine but the entire robot falls very slowly. For reference, here is the source (except for ur10.urdf.xacro). The offending gazebo plugin tag is found in models/common.gazebo.xacro. |
2018-08-23 09:43:10 -0500 | answered a question | gazebo7 hardware_interface/PositionJointInterface EffortJointInterfacerobot being hung up This is a known problem with Gazebo 7. The solution for me was to use Gazebo 9 and the latest (at the time) version of |
2018-08-17 11:41:07 -0500 | commented answer | Problems with grasping an object: need to wait 15s until the object gets attached to the gripper Though grasping appears to be working for some users: https://ieeexplore.ieee.org/document/7090732/. |
2018-08-17 11:40:43 -0500 | commented answer | Does the gripper tag still work in Gazebo 7? It seems that grasping works fine in this simulation (https://ieeexplore.ieee.org/document/7090732/) without needing the |
2018-08-17 11:35:09 -0500 | commented answer | Does the gripper tag still work in Gazebo 7? As far as you know is this the only means of grasping in Gazebo? Does your implementation require the 5--15 seconds men |
2018-08-17 11:32:36 -0500 | commented answer | Problems with grasping an object: need to wait 15s until the object gets attached to the gripper Thanks for answering. Unfortunately, I've been unable to perform grasping in either Gazebo 7 or 9. http://answers.gaze |
2018-08-17 11:32:16 -0500 | commented answer | Problems with grasping an object: need to wait 15s until the object gets attached to the gripper Thanks for answering. Unfortunately, I've been unable to perform grasping in either Gazebo 7 or 9. http://answers.gaze |
2018-08-15 01:22:04 -0500 | received badge | ● Famous Question (source) |
2018-08-14 10:29:45 -0500 | commented question | Physics problem with simple movement of grasped object For some unknown reason I did not receive email notifications about your comments. Thanks for responding! @Raskkii, as |
2018-08-14 10:26:30 -0500 | commented question | Physics problem with simple movement of grasped object For some unknown reason I did not receive email notifications about your comments. Thanks for responding! @Raskkii, as |
2018-08-14 09:37:55 -0500 | edited question | Physics problem with simple movement of grasped object Physics problem with simple movement of grasped object The robot tool is a prismatic gripper with four rods that slip in |
2018-08-10 08:07:53 -0500 | received badge | ● Notable Question (source) |
2018-08-10 04:31:37 -0500 | received badge | ● Nice Question (source) |
2018-08-09 15:58:31 -0500 | received badge | ● Popular Question (source) |
2018-08-09 14:24:47 -0500 | edited question | Physics problem with simple movement of grasped object Physics problem with simple movement of grasped object The robot tool is a prismatic gripper with four rods that slip in |
2018-08-09 13:29:21 -0500 | edited question | Physics problem with simple movement of grasped object Physics problem with simple movement of grasped object The robot tool is a prismatic gripper with four rods that slip in |
2018-08-09 11:16:07 -0500 | edited question | Physics problem with simple movement of grasped object Physics problem with simple movement of grasped object The robot tool is a prismatic gripper with four rods that slip in |
2018-08-09 10:52:36 -0500 | edited question | Physics problem with simple movement of grasped object Problem with simple movement of grasped object The robot tool is a prismatic gripper with four rods that slip into match |