Gazebo | Ignition | Community
Ask Your Question
0

Prismatic joint not reaching its limit

asked 2020-09-29 18:21:20 -0500

MathewBlevin gravatar image

Hi,

I have built a URDF for a simple xyz gantry robot, using a velocitycontrollers/JointPositionController in ROS Melodic.

The issue is when sending the robot to its prismatic joint limits, the z axis will stop short of the limit. The range is 0 to 0.812m, where it stops at roughly 0.76m.

I have tried altering the effort and velocity tags within the relevant joint tag as well as the PID gains, which have had no effect. The other two joints are capable of reaching their limits.

Could anyone with any idea about this issue point me in the right direction please.

My URDF and Controller Config file are located here, as well as a screenshot of the issue: https://github.com/MathewBlevin/Thesi...

Thank you in advance.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-10-02 18:46:08 -0500

I just dealt with this problem myself. No matter what, I couldn't get the vertical joint of my arm to reach its target. I'm using effort controllers, but the circumstances are probably the same for velocity controllers. Here is how I solved it: (I'm also giving some values, applicable to my case, for reference)

  • I increased the joint effort by a lot (4x), as well as the P gain of the PID (on the 10s of thousands)
  • The above makes the joint movements very aggressive. To combat this, I added damping in the joint (500) and I maxed out the D gain of the PID (1000)
  • Then there was drifting in the joint. For this, I added friction in the joint (20)
  • The last part is the steady-state error. For this, you need to work with the I components of the PID. Too little, or too much, keeps the joint away from the target. You need to find the right values ({i:150, i_clamp_min: -150, i_clamp_max: 150, antiwindup: false})

With all of the above, I was able to control my joint with submillimeter precision.

Keep in mind that this calibration of the PID is dependent on the state of the robot. By that, I mean that if your robot carries a (heavy) object, the steady state of the joint will change. If the error is too much, then you'll have to recalibrate the PID for that case. In my simulation, I can detect when objects are in the gripper. I plan to use this, to dynamically recalibrate the PID for the current state (should it become problematic). The PID is a reconfigure server, so you can use a client to update the values.


Btw depending on what you intend to do in your simulation, you might want to consider position controllers. They are not affected by dynamics, so you won't have this problem. But then again, there are other problems with those.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2020-09-29 18:21:20 -0500

Seen: 3,046 times

Last updated: Oct 02 '20