Robot Components API Documentation
Robot Components is a plugin for intuitive robot programming for ABB robots inside of Rhinoceros Grasshopper. Robot Components offers a wide set of tools to create toolpaths, simulate robotic motion and generate RAPID code within Grasshopper. Some of the main features include:
- 40+ predefined ABB robot models
- Possibility to add your own robot models
- Support for external axes (both linear and rotational)
- Possibility to define custom strategies for all external axis values
- Support for work objects (including movable work objects)
- Efficient forward and inverse kinematics
- Possibility to add your own custom code lines
- Real-time connection with IRC5 and OmniCore controllers
- Robot Components API to develop your custom components using either Python or C#
Getting Started
You can download the latest release directly from our Github release page and from Food4Rhino. For installation instructions, we refer you to our other documentation website where the Grasshopper plugin is documented (the visual programming interface). The purpose of this documentation website is to give an overview of the API references and to give examples on how to use the Robot Components API with IronPython and C#. The Robot Components API depends on the RhinoCommon API. If you want to use the API outside Rhino and Grasshopper (e.g. Unity) you need to run Rhino.Inside to be able to use the Robot Components API.
Overview of the namespaces
The Robot Components API consists of the following main namespaces:
Actions: This namespace contains all the classes to generate the RAPID program code. These are the different declarations and instructions to create a RAPID program. In the visual interface of the Grasshopper plugin these classes and the objects that are generated from these classes are categorized as code generation. This namespace also includes the RAPID generator class.
Controllers: This namespace contains classes and methods to interact with ABB controllers in real-time.
Definitions: This namespace contains all the classes to define robots and robot tools that are needed for simulation and code generation.
Kinematics: This namespace contains the inverse and forward kinematics class, and the path generator class.
Presets: This namespace contains the mechanical unit presets.
Utils: This namespace mainly contains helper methods that are used in all other namespaces. Most of these methods are also used in the utility components in the visual interface of the Grasshopper plugin.
Credits
Robot Components is an open-source project that was initiated by the chair of Experimental and Digital Design and Construction of the University of Kassel. The plugin is currently further developed and maintained by Arjen Deetman. All developers and contributors are listed here.
RobotComponents uses the ABB PC SDK for real-time connection to ABB Robots, you can find the .dll used in this project here: ABB developercenter.
Robot Components uses the OPW kinematics solver as described in the paper 'An Analytical Solution of the Inverse Kinematics Problem of Industrial Serial Manipulators with an Ortho-parallel Basis and a Spherical Wrist' by Mathias Brandstötter, Arthur Angerer, and Michael Hofbaur.
We would like to acknowledge Jose Luis Garcia del Castillo and Vicente Soler for making their Grasshopper plugins RobotExMachina and Robots available. Even though our approach is different it was helpful for us to see how you implemented certain functionalities and approached certain issues.
License
Copyright (c) 2018-2024 The Robot Components authors and/or their affiliations
Robot Components is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation.
Robot Components is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Robot Components; If not, see http://www.gnu.org/licenses/.
@license GPL-3.0 https://www.gnu.org/licenses/gpl-3.0.html