Boid Simulation
How it Works:
This is a boid/flocking simulation. It is designed to show the complex emergent behavior exhibited from simple rules. It is similar to the n-body problem where there are n bodies that are attracted to eachother through gravity which also produces interesting and complex emergent behavior. However, in this algorithm instead of gravitational attraction there are instead 3 rules that act on each boid.
Alignment
The first rule is alignment. This rule dictates that all boids should face in the same direction as the other boids it can see. In terms of implementation that means that each boid has a force applied to them that points in the average velocity of their neighboors.
Cohesion
The second rule is cohesion. This rule dictates that all boids should go towards the center of the flock. In other words it means that each boid has a force applied to them that points towards the center of mass of the boids that it can see.
Seperation
The third rule is seperation. This rule makes boids that are too close to eachother seperate. In this implementation the force each boid applies to each other boid in its radius is inversly proportional to the square of the distance between them just like in the n-body problem. However, in a boid simultion this force pushes apart rather than pull together.