Tasks is library for real time control of robots and kinematic trees using constrained optimization. It has been used extensively to control humanoid robots such as HOAP-3, HRP-2, HRP-4 and Atlas.
Features:
- Support Kinematics Tree with Revolute/Prismatic/Spherical/Free/Planar/Cylindrical joints
- Dynamic motion (motion must fulfill the equation of motion)
- Contact forces in friction cones
- Static contacts
- Articular position, speed and torque limits
- Collision avoidance
- Multi-robot contact (can solve problems involving multiple robots in contact)
- Tasks:
- Posture target (articular position target, mandatory if you want avoid singularity issues)
- Link Position/Orientation target
- Link Velocity target
- Center of Mass (CoM) target
- Momentum target
- Contact force target
To make sure that Tasks works as intended, unit tests are available for each algorithm.
The SpaceVecAlg and RBDyn tutorial is also a big resources to understand how to use Tasks by providing a lot of IPython Notebook that will present real use case.
An online documentation can be found online.
# Make sure you have required tools
sudo apt install apt-transport-https lsb-release ca-certificates gnupg
# Add our key
sudo apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key 892EA6EE273707C6495A6FB6220D644C64666806
# Add our repository (stable versions)
sudo sh -c 'echo "deb https://dl.bintray.com/gergondet/multi-contact-release $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/multi-contact.list'
# Use this to setup the HEAD version
# sudo sh -c 'echo "deb https://dl.bintray.com/gergondet/multi-contact-head $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/multi-contact.list'
# Update packages list
sudo apt update
# Install packages
sudo apt install libtasks-dev python-tasks python3-tasksInstall the latest version using conan
conan remote add multi-contact https://api.bintray.com/conan/gergondet/multi-contact
# Install the latest release
conan install Tasks/latest@multi-contact/stable
# Or install the latest development version
# conan install Tasks/latest@multi-contact/devInstall from the command line using Homebrew:
# install homebrew package manager
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# install caskroom application manager
brew install caskroom/cask/brew-cask
# tap homebrew-science package repository
brew tap homebrew/science
# tap ahundt-robotics repository
brew tap ahundt/robotics
# install tasks and all its dependencies
brew install tasksTo compile you need the following tools and libraries:
- Git
- CMake >= 2.8
- pkg-config
- doxygen
- g++ >= 4.7 (for C++11 support)
- Boost >= 1.49
- Eigen >= 3.2
- SpaceVecAlg
- RBDyn
- eigen-qld
- eigen-lssol (Optional, if you have the LSSOL licence ask us this library)
- sch-core
For Python bindings:
- Cython >= 0.2
- Eigen3ToPython
- sch-core-python
git clone --recursive https://github.com/jrl-umi3218/Tasks
cd Tasks
mkdir _build
cd _build
cmake [options] ..
make && make intallBy default, the build will use the python and pip command to install the bindings for the default system version (this behaviour can be used to build the bindings in a given virtualenv). The following options allow to control this behaviour:
PYTHON_BINDINGBuild the python binding (ON/OFF, default: ON)PYTHON_BINDING_FORCE_PYTHON2: usepython2andpip2instead ofpythonandpipPYTHON_BINDING_FORCE_PYTHON3: usepython3andpip3instead ofpythonandpipPYTHON_BINDING_BUILD_PYTHON2_AND_PYTHON3: builds two sets of bindings one withpython2andpip2, the other withpython3andpip3BUILD_TESTINGEnable unit tests building (ON/OFF, default: ON)