Implementation of two swarm algorithms: brazil nut effect spatial sorting and Reynolds flocking.

Brazil nut effect spatial sorting

Brazil-nut

Brazil Nut Effect is the phenomenon that in a cereal packs under vibration, the largest particle, which is usually the Brazil nut, will end up at the top. Based on this kind of segregation pattern, it can be applied to the task of sorting a swarm and multi-robot system based on the artificial size assigned to the robots.

This project implements the algorithm described in “Segregation in Swarms of e-puch Robots Based on the Brazil Nut Effect” by Chen et al.

Control

The motion of each robot is governed by the following three forces:

  1. Attraction towards a point common to all robots, which emulates the effect of a gravitational pull.
  2. Random motion, which emulates the effect of vibration.
  3. Repulsion from nearby robots, which emulates the effect of collisions.

Reynolds flocking

flocking

Reynolds flocking is a computer model invented by Craig Reynolds in 1986. It aims for simulating the coordinated motion of large number of animals such as bird flocks and fish schools.

This project implements the algorithm described in “Reynolds flocking in reality with fixed-wing robots: communication range vs. maximum turning rate” by Hauert et al.

Control

Each robot is steered by changing their turn rate proportionally to the error between their current heading and their desired heading. The desired heading is given by the weighted sum of the following vectors:

  1. Alignment: mean velocity of all robots within communication range.
  2. Cohesion: vector pointing towards the center of mass of all robots within communication range
  3. Separation: each robot within the communication range generates a repulsion vector that is inversely proportional to the distance separating the two robots. These vectors are then summed and the resulting vector is normalized.
  4. Migration: vector pointing towards the migration point.

Source Code

Since this is a class project, the source code can not be provided for now.

References