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

Set the maximum speed of robot

asked 2022-11-01 11:20:50 -0500

akumar3.1428 gravatar image

updated 2023-06-18 09:46:02 -0500

lucasw gravatar image

I would like to know how can I set the maximum speed of the robot manipulator. I am currently using set_max_acceleration_scaling_factor(1), is there any function that can help to increase it's speed.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-11-01 14:36:50 -0500

nils_iseke gravatar image

In your ros_package their should be a joint_limits.yaml file, in which the speed limits are set. There you can set the speed limit, or turn of speed limit by setting has_velocity_limits to false. The yaml file should look similar to the following:

joint_limits:
    joint_1:
    min_position: -2.84
    max_position: 2.84
    has_velocity_limits: true
    max_velocity: 3.141592653589793
    has_acceleration_limits: false
    max_acceleration: 0
edit flag offensive delete link more

Question Tools

2 followers

Stats

Asked: 2022-11-01 11:20:50 -0500

Seen: 195 times

Last updated: Nov 01 '22