NetLogo banner

Home
Download
Help
Resources
Extensions
FAQ
NetLogo Publications
Contact Us
Donate

Models:
Library
Community
Modeling Commons

Beginners Interactive NetLogo Dictionary (BIND)
NetLogo Dictionary

User Manuals:
Web
Printable
Chinese
Czech
Farsi / Persian
Japanese
Spanish

  Donate

NetLogo User Community Models

(back to the NetLogo User Community Models)

[screen shot]

Download
If clicking does not initiate a download, try right clicking or control clicking and choosing "Save" or "Download".(The run link is disabled for this model because it was made in a version prior to NetLogo 6.0, which NetLogo Web requires.)

WHAT IS IT?

This is a simple model that demonstrates how agents can avoid obstacles and find targets autonomously using the potential field approach.

HOW IT WORKS

The model uses the potential field approach to avoid obstacles and find targets. Such mechanisms could be well used in exploring the behaviour of ants trying to find a food source or the nest on their way back home.

Imagine each ant/agent/robot to be positively charged, obstacle(s) to be positively charged and the target to be negatively charged, the agents would then avoid the obstacle and reach the target.

The model embraces the concept of potential field from electrostatics and also a very popular mechanism in path planning of agents. The Potential field due to the target is modelled using the following equation:

    V = Vg * exp (-lambda * Xg)

& that due to the obstacle by

    V = -Vo * exp (-lambda * Xo)

where

    Vg is the potential field at the location of the goal/target
V0 is the potential field at the location of the obstacle
Xg is the distance from the goal, and
Xo is the distance from the obstacle

HOW TO USE IT

Press the Setup button to setup the environment and the Go button to start and stop the simulation

THINGS TO NOTICE

Check how the convergence time varies with different values of Vg and Vo

EXTENDING THE MODEL

Maybe including more objects of different shapes would be an interesting thing to look at.

(back to the NetLogo User Community Models)