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

How to start the ur modern driver in pos based instead of vel based

asked 2019-07-09 06:11:03 -0500

Victor Wu gravatar image

It is mentioned in the README of the driver that there is a way to switch between the two modes of executing the joint trajectory. However, how should one specify one rather then the other as default when deploying the driver?

Your help would be very much appreciated.

Victor Wu.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2019-07-09 06:21:39 -0500

gvdhoorn gravatar image

This would be the same as with other ros_control based hardware_interface drivers: by changing the configuration of which controllers are loaded and started vs loaded and stopped.

For the UR3 with ur_modern_driver that can be done with the controllers and stopped_controllers launch file arguments here:

<arg name="controllers" default="joint_state_controller force_torque_sensor_controller vel_based_pos_traj_controller"/>
<arg name="stopped_controllers" default="pos_based_pos_traj_controller joint_group_vel_controller"/>

as you can see, by default the joint_state_controller, force_torque_sensor_controller and the vel_based_pos_traj_controller are loaded and started, and the pos_based_pos_traj_controller and joint_group_vel_controller are loaded but in the stopped state.

You'll want to change that such that pos_based_pos_traj_controller is loaded and started and vel_based_pos_traj_controller is loaded but stopped.

edit flag offensive delete link more

Comments

Thank you. That will let me go back to the pos_based controller to carry on my work and try to learn how to use the vel_based controller. I am hoping that the vel_based controller can give me a smoother movement.

Victor Wu gravatar image Victor Wu  ( 2019-07-09 06:31:49 -0500 )edit

Question Tools

1 follower

Stats

Asked: 2019-07-09 06:11:03 -0500

Seen: 174 times

Last updated: Jul 09 '19