mirror of
https://gitlab.com/obbart/universal_robots_ros_driver.git
synced 2026-04-10 01:50:46 +02:00
Add velocity feedforward and reduce PID gains for UR10 joint trajectory controller (#228)
This commit is contained in:
committed by
G.A. vd. Hoorn
parent
2f1251c2eb
commit
1b1972891c
@@ -74,14 +74,22 @@ vel_based_pos_traj_controller:
|
||||
state_publish_rate: 125
|
||||
action_monitor_rate: 10
|
||||
gains:
|
||||
#!!These values are useable, but maybe not optimal
|
||||
shoulder_pan_joint: {p: 20.0, i: 0.0, d: 0.1, i_clamp: 1}
|
||||
shoulder_lift_joint: {p: 20.0, i: 0.0, d: 0.1, i_clamp: 1}
|
||||
elbow_joint: {p: 20.0, i: 0.0, d: 0.1, i_clamp: 1}
|
||||
wrist_1_joint: {p: 20.0, i: 0.0, d: 0.1, i_clamp: 1}
|
||||
wrist_2_joint: {p: 20.0, i: 0.0, d: 0.1, i_clamp: 1}
|
||||
wrist_3_joint: {p: 20.0, i: 0.0, d: 0.1, i_clamp: 1}
|
||||
#!!These values have not been optimized!!
|
||||
shoulder_pan_joint: {p: 5.0, i: 0.05, d: 0.1, i_clamp: 1}
|
||||
shoulder_lift_joint: {p: 5.0, i: 0.05, d: 0.1, i_clamp: 1}
|
||||
elbow_joint: {p: 5.0, i: 0.05, d: 0.1, i_clamp: 1}
|
||||
wrist_1_joint: {p: 5.0, i: 0.05, d: 0.1, i_clamp: 1}
|
||||
wrist_2_joint: {p: 5.0, i: 0.05, d: 0.1, i_clamp: 1}
|
||||
wrist_3_joint: {p: 5.0, i: 0.05, d: 0.1, i_clamp: 1}
|
||||
|
||||
# Use a feedforward term to reduce the size of PID gains
|
||||
velocity_ff:
|
||||
shoulder_pan_joint: 1.0
|
||||
shoulder_lift_joint: 1.0
|
||||
elbow_joint: 1.0
|
||||
wrist_1_joint: 1.0
|
||||
wrist_2_joint: 1.0
|
||||
wrist_3_joint: 1.0
|
||||
|
||||
# state_publish_rate: 50 # Defaults to 50
|
||||
# action_monitor_rate: 20 # Defaults to 20
|
||||
|
||||
Reference in New Issue
Block a user