Giter Club home page Giter Club logo

rvo_py_mas's Introduction

RVO_Py_MAS

Python Implementation of Reciprocal Velocity Obstacle (RVO) for Multi-agent Systems

@ARTICLE{8361450,
  author={M. {Guo} and M. M. {Zavlanos}},
  journal={IEEE Transactions on Robotics}, 
  title={Multirobot Data Gathering Under Buffer Constraints and Intermittent Communication}, 
  year={2018},
  volume={34},
  number={4},
  pages={1082-1097},
  doi={10.1109/TRO.2018.2830370}}

Description

This package contains a plug-and-play Python package for collision-avoidance in multi-agent system, based on reciprocal velocity obstacles (RVO) and hybrid reciprocal velocity obstacles (HRVO).

It has minimal impact on your control objective and requires minimal integration.


Features

  • Takes a 2D workspace with any number of non-overlaping circular or square obstacles
  • Any number of dynamic agents with non-zero volume.
  • Allow the choice of VO, RVO, HRVO.
  • Direct plug-and-play and fully integrate-able with your control objective, i.e., the output velocity is a minimal modification of the desired velocity.
from your_module import compute_desired_V, Update_V
from RVO import RVO_update

# your control objective here 
V_desired = compute_desired_V(X, control_objective, V_max)

# plug in the RVO controller from this package
V = RVO_update(X, V_desired, workspace_model)

# let the robot move
X = Update_X(X, V, step)

References

  • Papers on RVO, HRVO
  • There are Python bindings of the C++ implementation from the algorithm developers. For my purposes, the formality is too heavy to be integrated into my own project, so I have my own try.
  • This package does not depend on the Clearpath geometric package to compute velocity obstacles.

Discussion

  • For very clustered workspace with a large number of robots, you may need to limit the maximal velocity and use very small step size.
  • You may add additional constraints in RVO_update such as the change rate of V, the lower bound of V.
  • When applying this module to experimental robot control, you may need to set the step size higher due to hardware constraints.
  • In most practical experiments, this scheme should still work by limiting the maximal velocity.

rvo_py_mas's People

Contributors

20chase avatar mengguo avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.