|
|||
Home Page Download Models Community Models Extensions User Manual:![]() Web version![]() Printable version FAQ Resources Contact Us |
NetLogo Models Library: | ||
|
Run Follower in your browser uses NetLogo 4.0.2 requires Java 1.4.1+ (system requirements) Note: If you download the NetLogo application, every model in the Models Library (besides the Community Models) is included. If you have trouble running this model in your browser, you may wish to download the application instead. |
WHAT IS IT?
In Follower, turtles attempt to "connect" with other turtles, forming long chains according to a small set of simple rules.
In the model, a turtle can follow only ONE other turtle, and similarly it can only be followed by ONE other turtle. This means there are four turtle states, each represented by a different color:
- Magenta: Unattached
- Green: Following another turtle (a "tail")
- Yellow: Being followed by another turtle (a "head")
- Blue: Following and being followed by other turtles (a "body" segment)
Turtles are created in the magenta (unattached) state. At each turn, each turtle checks a random patch in a square donut shape around itself. If it finds a turtle there who is not already being followed, it will "latch on" and start following the movements of that turtle. An unattached turtle (one that has not yet "latched on" to another turtle) will move randomly.
HOW TO USE IT
SETUP: Clears the world and creates the number of turtles specified in the POPULATION slider. All the turtles are created in an unattached state (magenta).
GO: Runs the simulation.
POPULATION: Specifies the number of turtles created in SETUP.
NEAR-RADIUS: The inner radius of the square donut turtles search in.
FAR-RADIUS: The outer radius of the square donut turtles search in.
WAVER: The amount of randomness in the movement of non-following turtles.
There is also a plot called "Turtle Count" that displays, over time, the number of turtles in each state.
THINGS TO NOTICE
Each of the sliders has a different effect on the simulation.
Notice that the when the number of turtles is high, chains tend to form very quickly. This is because there are more turtles and therefore more chances for each turtle to attach on each turn.
Varying the size of the donut tends to affect how the turtles start to attach, but in the long run doesn't have a big effect on the simulation outcome. Donut size is most interesting at very small values, which causes the turtles to attach into very small loops. Also, very large thick donuts (big FAR-RADIUS, small NEAR-RADIUS) looks interesting with a large number of turtles.
The amount of movement randomness (set by WAVER) can also change the simulation outcome. Very high values for WAVER result in small loops being formed because the turtles are continuously moving over themselves, increasing the chances of connecting the head of the chain to its tail.
The simulation, under any parameters, moves towards forming loops. Loops may be formed by wrapping around the world, but in almost all cases if the simulation is left running long enough you will get many small loops or one big loop. It is possible that a chain will never connect to itself if the WAVER slider is set to zero, but otherwise the simulation should proceed towards loops.
THINGS TO TRY
Try making the waver setting very high. Notice how the turtles clump up into little clusters. This is because they are moving over themselves frequently, which increases the chances of attaching to their tail. This makes sense if the donut allows the turtles to check close to themselves, but if it does not (NEAR-RADIUS is big) then the same thing still happens. Why is this the case?
Notice that we are plotting all four possible turtle states, but only three appear on the plot. Do you know why?
EXTENDING THE MODEL
Try implementing different rules for how turtles follow each other. For instance, interesting results can be seen if you turn off world wrapping. Or, what if two turtles are allowed to have the same leader?
You might also try giving the turtles a certain probability of breaking apart again. See how this affects the patterns they make.
NETLOGO FEATURES
Note the use of the TOWARDS primitive to make the turtles follow each other.
Note also that we are careful to ensure that we never have two turtles following the same leader.
CREDITS AND REFERENCES
To refer to this model in academic publications, please use: Wilensky, U. (1998). NetLogo Follower model. http://ccl.northwestern.edu/netlogo/models/Follower. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL.
In other publications, please use: Copyright 1998 Uri Wilensky. All rights reserved. See http://ccl.northwestern.edu/netlogo/models/Follower for terms of use.
(back to the NetLogo Models Library)