mirror of
https://gitlab.com/obbart/universal_robots_ros_driver.git
synced 2026-04-10 01:50:46 +02:00
Updated README.md to include duration monitoring remarks
This commit is contained in:
12
README.md
12
README.md
@@ -39,7 +39,7 @@ A new driver for the UR3/UR5/UR10 robot arms from Universal Robots. It is design
|
||||
|
||||
* Added activation modes: `Never`, `Always` and `OnStartup`. Sets wether a call to the `ur_driver/robot_enable` service is required at startup, at startup + on errors or never. Is intended as a safety feature to require some sort of manual intervention in case of driver crashes and robot safety faults.
|
||||
|
||||
* **Low Bandwidth Trajectory Follower** mode of execution. In this mode the real-time control loop for the robot is shifted from the client PC running the driver to URscript executed on the URControl PC of the robot with the following features:
|
||||
* **Low Bandwidth Trajectory Follower** mode of execution. (only works when `ros_control` is set to `false`)In this mode the real-time control loop for the robot is shifted from the client PC running the driver to URscript executed on the URControl PC of the robot with the following features:
|
||||
* It works only with */follow\_joint\_trajectory* action for MoveIt integration. It is mutually exclusive with *ros_control*
|
||||
* It only implements "position + velocity" based control - it uses coarse positions and velocities calculated by MoveIt and performs cubic interpolation of joint positions (Bezier' curve) of positions. The positions are set using servoj command of URScript.
|
||||
* It is much more resilient to connectivity problems than other methods of ur_modern_driver. It is resilient to additional load on client PC, latency of network and kernel of the PC the driver runs on. This makes it much better suitable for development/research quick iteration loops without separate dedicated physical setup.
|
||||
@@ -62,6 +62,16 @@ Here are some examples of manipulating the time flow for **Low Bandwidth Traject
|
||||
* Slow-motion mode: *servoj_time* = 0.008, *time_interval* = 0.004 : interpolation time flows 2x slower than real time, so the move is executed 2x slower than planned. Requires configuring MoveIt to accept much slower moves than expected (otherwise MoveIt cancels such move mid-way)
|
||||
* Fast-forward mode: *servoj_time* = 0.004, *time_interval* = 0.012 : interpolation time flows 3x faster than real time, so the move is 3x faster than planned. Might violate limits of the robot speed so use carefully and make sure you gradually increase the speed in-between to check how safe it is.
|
||||
|
||||
NOTE! In case you use Low Bandwidth Trajectory Follower and you experience MoveIt to cancel robot moves prematurely
|
||||
because of too long move duration, you should increase tolerance of duration monitoring of MoveIt trajectory execution
|
||||
You can find the configuration usually in trajectory_execution.launch.xml in generated moveit config - there are
|
||||
parameters that configure scaling and margin for allowed execution time among others.
|
||||
The relevant parameters are `trajectory_execution/allowed_execution_duration_scaling` (default 1.2) and
|
||||
`trajectory_execution/allowed_goal_duration_margin` (default 0.5). The first one is factor that scales execution time,
|
||||
the second is margin that is added on top of the scaled one. You can increase either of those values to make moveit
|
||||
executor more "tolerant" to execution delays. There is also another parameter:
|
||||
`trajectory_execution/execution_duration_monitoring`. You can set it to false to disable duration monitoring completely.
|
||||
|
||||
## Installation
|
||||
|
||||
**As the driver communicates with the robot via ethernet and depends on reliable continous communication, it is not possible to reliably control a UR from a virtual machine.**
|
||||
|
||||
Reference in New Issue
Block a user