|
| 1 | +# Joints limits |
| 2 | +# |
| 3 | +# Sources: |
| 4 | +# |
| 5 | +# - Universal Robots e-Series, User Manual, UR20, Version 5.14 |
| 6 | +# https://s3-eu-west-1.amazonaws.com/ur-support-site/203281/706-276-00_UR20_User_Manual_en_Global.pdf |
| 7 | +joint_limits: |
| 8 | + shoulder_pan_joint: |
| 9 | + # acceleration limits are not publicly available |
| 10 | + has_acceleration_limits: false |
| 11 | + has_effort_limits: true |
| 12 | + has_position_limits: true |
| 13 | + has_velocity_limits: true |
| 14 | + max_effort: 730.0 |
| 15 | + max_position: !degrees 360.0 |
| 16 | + max_velocity: !degrees 120.0 |
| 17 | + min_position: !degrees -360.0 |
| 18 | + shoulder_lift_joint: |
| 19 | + # acceleration limits are not publicly available |
| 20 | + has_acceleration_limits: false |
| 21 | + has_effort_limits: true |
| 22 | + has_position_limits: true |
| 23 | + has_velocity_limits: true |
| 24 | + max_effort: 730.0 |
| 25 | + max_position: !degrees 360.0 |
| 26 | + max_velocity: !degrees 120.0 |
| 27 | + min_position: !degrees -360.0 |
| 28 | + elbow_joint: |
| 29 | + # acceleration limits are not publicly available |
| 30 | + has_acceleration_limits: false |
| 31 | + has_effort_limits: true |
| 32 | + has_position_limits: true |
| 33 | + has_velocity_limits: true |
| 34 | + max_effort: 430.0 |
| 35 | + # we artificially limit this joint to half its actual joint position limit |
| 36 | + # to avoid (MoveIt/OMPL) planning problems, as due to the physical |
| 37 | + # construction of the robot, it's impossible to rotate the 'elbow_joint' |
| 38 | + # over more than approx +- 1 pi (the shoulder lift joint gets in the way). |
| 39 | + # |
| 40 | + # This leads to planning problems as the search space will be divided into |
| 41 | + # two sections, with no connections from one to the other. |
| 42 | + # |
| 43 | + # Refer to https://github.com/ros-industrial/universal_robot/issues/265 for |
| 44 | + # more information. |
| 45 | + max_position: !degrees 180.0 |
| 46 | + max_velocity: !degrees 150.0 |
| 47 | + min_position: !degrees -180.0 |
| 48 | + wrist_1_joint: |
| 49 | + # acceleration limits are not publicly available |
| 50 | + has_acceleration_limits: false |
| 51 | + has_effort_limits: true |
| 52 | + has_position_limits: true |
| 53 | + has_velocity_limits: true |
| 54 | + max_effort: 100.0 |
| 55 | + max_position: !degrees 360.0 |
| 56 | + max_velocity: !degrees 210.0 |
| 57 | + min_position: !degrees -360.0 |
| 58 | + wrist_2_joint: |
| 59 | + # acceleration limits are not publicly available |
| 60 | + has_acceleration_limits: false |
| 61 | + has_effort_limits: true |
| 62 | + has_position_limits: true |
| 63 | + has_velocity_limits: true |
| 64 | + max_effort: 100.0 |
| 65 | + max_position: !degrees 360.0 |
| 66 | + max_velocity: !degrees 210.0 |
| 67 | + min_position: !degrees -360.0 |
| 68 | + wrist_3_joint: |
| 69 | + # acceleration limits are not publicly available |
| 70 | + has_acceleration_limits: false |
| 71 | + has_effort_limits: true |
| 72 | + has_position_limits: true |
| 73 | + has_velocity_limits: true |
| 74 | + max_effort: 100.0 |
| 75 | + max_position: !degrees 360.0 |
| 76 | + max_velocity: !degrees 210.0 |
| 77 | + min_position: !degrees -360.0 |
0 commit comments