Faster Collision Detection

Collision detection speed highly depends on many factors.

1.The number of pairs of checks defined in the collision map. Having a collision map with less checks will be faster.

2.The robot step used for collision checking. The collision step can be modified in the ToolsOptionsMotion menu. Linear movements use the step in millimeters and joint movements use the step in degrees. A larger step will provide faster collision checking but the result may be less accurate.

3.Computer power: more computer power (faster CPU) and more processing threads will allow you to have faster collision checking.

4.The complexity of the 3D files. Geometries with higher level of detail, such as rounded areas, usually require more computation power. Simplifying these geometries and reducing the number of triangles will help you speed up collision checking.

Consider the following guidelines:

1.Choose STEP or IGES formats over STL files for better performance and compatibility.

2.Press CTRL+ALT+SHIFT+W to identify objects with a high triangle count.

3.To identify improperly grouped features, enable bounding box previews via ToolsOptionsOtherDraw bounding boxes (when collision check is activated). Ensure bounding boxes do not encompass multiple separate elements.

4.Avoid using the “Simplify Object…” feature found in ToolsOptionsDisplay. It consolidates all surfaces into a single element, resulting in one extensive bounding box, which goes against the previous point.

5.Have collision-specific objects in the environment: duplicate objects and remove surfaces that cannot be reached, or import a version with simpler geometries (e.g., convex hulls). Use the original object for visual purposes only and exclude it from the collision map.

6.Using the API, dynamically update the collision map or set items invisible when they should not be part of the collision detection.

Collision Avoidance - Image 5