Hi,
I have successfully run the script admittance_control.script. It's amazing!
Question 1
But when i drag the TCP, the robot emits a humming sound. The humming intensifies when dragging rapidly.
Is this normal behavior ?
My robot :
robot mode: UR5e
tcp mass: 4KG
tcpoffset=[135.76,135.76,126.51,0.0146,0.0437,-2.3713]
My input params:
mass_scaling = 0.5
damping_scaling = 0.5
mass_list = [40, 40, 40, 4, 4, 4]
damping_list = [120, 120, 120, 12, 12, 12]
dead_band = [3, 0.1, 3, 0.1]
compliance_vector = [1, 1, 1, 1, 1, 1]
stiffness_params = [0, 0, 0, 0, 0, 0]
target_wrench = [0, 0, 0, 0, 0, 0]
base_to_compliance_frame = p[0, 0, 0, 0, 0, 0]
tool_flange_to_compliance_center = get_tcp_offset()
Question 2
Based on the parameters entered in Question 1
If you want to achieve rotation around the TCP center, you must do it this way:
tcpoffset = get_tcp_offset()
tool_flange_to_compliance_center = [tcpoffset[0], tcpoffset[0], tcpoffset[0], 0, 0, 0]
Not
tool_flange_to_compliance_center = tcpoffset
why ?
Thanks
Hi,
I have successfully run the script admittance_control.script. It's amazing!
Question 1
But when i drag the TCP, the robot emits a humming sound. The humming intensifies when dragging rapidly.
Is this normal behavior ?
My robot :
robot mode: UR5e
tcp mass: 4KG
tcpoffset=[135.76,135.76,126.51,0.0146,0.0437,-2.3713]
My input params:
mass_scaling = 0.5
damping_scaling = 0.5
mass_list = [40, 40, 40, 4, 4, 4]
damping_list = [120, 120, 120, 12, 12, 12]
dead_band = [3, 0.1, 3, 0.1]
compliance_vector = [1, 1, 1, 1, 1, 1]
stiffness_params = [0, 0, 0, 0, 0, 0]
target_wrench = [0, 0, 0, 0, 0, 0]
base_to_compliance_frame = p[0, 0, 0, 0, 0, 0]
tool_flange_to_compliance_center = get_tcp_offset()
Question 2
Based on the parameters entered in Question 1
If you want to achieve rotation around the TCP center, you must do it this way:
tcpoffset = get_tcp_offset()
tool_flange_to_compliance_center = [tcpoffset[0], tcpoffset[0], tcpoffset[0], 0, 0, 0]
Not
tool_flange_to_compliance_center = tcpoffset
why ?
Thanks