ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
0

How to Increase UR Arm Joint Speed

asked 2020-11-04 15:55:37 -0500

fruitbot gravatar image

Hi,

I want to increase the universal robot joint speed. I do not set the speed anywhere in my code. The only place I have it set is on the UR touchpad (and it is set to the very max, 191 deg/second). However, when I measure the robot's speed, it is about 90deg/sec.

I am using a Universal Robot 3 e-series and ROS Melodic. I have used both the Universal Robots package from Universal Robots and ROS Industrial

Also, after launching my UR driver, I see the topic /speed_scaling_factor, which echos "data: 1.0" and data: 1.0

The /joint_group_vel_controller/command also seems like it could be related to joint speed, but nothing seems to be written to that topic.

Does anyone know how to increase the speed of a UR robot arm?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2020-11-05 05:19:38 -0500

gvdhoorn gravatar image

updated 2020-11-05 14:35:42 -0500

Your description is a bit vague, and there could be various reasons for why robots don't move at their maximum capabilities.

None of the packages you mention are artificially limiting the joint velocity limits, so I'd be surprised if it'd make any difference which you use.

When you write:

I have used both the Universal Robots package from Universal Robots and ROS Industrial

I assume you're not talking about the drivers, are you?

One thing to check would be to make sure you have acceleration limits configured in your MoveIt configuration, if you generated it yourself. The setup assistant will not configure them for you, which will make MoveIt use 1.0 rad/s^2 as defaults.

Another thing to check would be MoveIt's settings: the default for the speed and acceleration scaling factors has recently been changed to something much lower than 1.0 -- and for good reason. If you don't change that, you'll get much slower motion.


Edit:

Yes, I am referring to the drivers.

you should not be using ur_driver with a modern CB3 or e-Series controller. I very much doubt that you have.

Neither ur_modern_driver: it's been marked as deprecated for about a year now. I doubt you could have missed that.

As far as the acceleration limits, I don't see an option to set those in the Moveit! Setup Assistant, but the file my_moveit_config/config/joint_limits.yaml has the variable has_acceleration_limits set to false (so I would assume it is not the issue)

No, that's actually a problem.

See here where DEFAULT_ACCEL_MAX will be used if there are no acceleration limits. And DEFAULT_ACCEL_MAX = 1.0 (here).

Additionally, config/chomp_planning.yaml has an acceleration variable, smoothness_cost_acceleration, which is set to 1.0. I tried setting it equal to 0.01 and 100 and observed no difference in speed.

That's all unrelated, unless you're actually using CHOMP as your planner. Which I don't believe you are.

edit flag offensive delete link more

Comments

Yes, I am referring to the drivers.

As far as the acceleration limits, I don't see an option to set those in the Moveit! Setup Assistant, but the file my_moveit_config/config/joint_limits.yaml has the variable has_acceleration_limits set to false (so I would assume it is not the issue)

Here is an example of the joint configuration in joint_limits.yaml:

joint_limits: 
  elbow_joint:
    has_velocity_limits: true
    max_velocity: 3.14
    has_acceleration_limits: false
    max_acceleration: 0

Additionally, config/chomp_planning.yaml has an acceleration variable, smoothness_cost_acceleration, which is set to 1.0. I tried setting it equal to 0.01 and 100 and observed no difference in speed.

Thank you for your help. Please let me know if any of the above doesn't check out or if you have any other suggestions.

fruitbot gravatar image fruitbot  ( 2020-11-05 13:51:33 -0500 )edit

Ah that was the problem!

I set has_acceleration_limits to true and increased max_acceleration to 5 and now see that the arm speed has increased significantly.

Thank you for your help!

fruitbot gravatar image fruitbot  ( 2020-11-05 14:58:57 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2020-11-04 15:55:37 -0500

Seen: 1,448 times

Last updated: Nov 05 '20