Dynamic Payload setting in UR E series to pick the dynamic payload

Hello,

We are working on UR eseries + Vision project for pick and place. There are various product UR needs to pick from the bin. The weight will be not same for all the products. It will vary between 2 kg to 10 kg. Is there is any feature in UR eseries, which we can set it up to a dynamic payload, so it can pick any load ranges 2kg to 10 kg of product.
Is there any script for this feature.

Hi,

You can refer to the UR script manual and try the “force()” and “zero_ftsensor()” to know the external force on the robot. Then, use the set command to set to the correct payload.

As sya said:

Wait 0.2
zero_ftsensor()
Pick_Part
Wait 0.2
Var_1 = force()
Var_2 = Var_1/10 //Newton to kg
set_payload_mass(Var_2)

This should do it. :slight_smile:

1 Like