Where to Modify JointTrajectoryController?

asked 2018-10-08 15:25:01 -0500

akosodry gravatar image

Hello ROS Community!

(I assume what i am asking isnt the right way to solve things, and i am also sure that there are much better ways to solve the problem.)

My 5DOF system is controlled with the moveit commander, and the desired poses are successfully calculated (i.e. with group.set_pose_target and traj = group.plan).

For the real execution position_controllers/JointTrajectoryController is defined (ros_controllers).

Before the trajectory execution on the real robot, i want to manipulate the joint commands for the last two joints. Namely, i want to implement/modify the cpp (source of ros_controllers) somewhere in the lower level with the following:

joint_4 = joint_5calculated - joint_4calculated

joint_5 = -joint_5calculated - joint_4calculated,

where joint_icalculated denotes the calculated joint commands with IK.

Can someone recommend which cpp file would be the most suitable for this modification?

(The joint_state_controller contains the "inverse" of the aforementioned equations. This was quite easy to find and modify.)

Thank you in advance.

edit retag flag offensive close merge delete

Comments

1

You could either change your robot description to have the IK be like you want it, or you could change your RobotHW to apply the commands differently. I think changing the controller is not the easiest way to go about it since it is written very generically.

bouke gravatar image bouke  ( 2018-10-11 03:18:54 -0500 )edit

Yep, thanks for the reply. Its a long story, i asked about differential transmission earlier, and the purpose was to somehow manipulate the IK results that will make the transmission work as it suppose to work. Finally, i was able to do it by manipulating the trajectory (IK output).

akosodry gravatar image akosodry  ( 2018-10-11 03:29:27 -0500 )edit