|
|||
Home Page Download Models Community Models Extensions User Manual:![]() Web version![]() Printable version FAQ Resources Contact Us |
NetLogo Models Library: | ||
|
Run Moths 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?
This model demonstrates moths flying in circles around a light. Each moth follows a set of simple rules. None of the rules specify that the moth should seek and then circle a light. Rather, the observed pattern arises out of the combination of the moth's random flight and the simple behavioral rules described below.
Scientists have proposed several explanations for why moths are attracted to and then circle lights. For example, scientists once believed that moths navigated through the sky by orienting themselves to the moon, and that the moths' attraction to nearby, earthly light sources (such as a street lamp) arose because they mistook the terrestrial lights for the moon. However, while this explanation may seem reasonable, it is not supported by available scientific evidence.
HOW IT WORKS
Moths exhibit two basic kinds of behavior. When they detect a light source from a distance (as far as 200 feet away) moths tend to fly straight toward the light. Then, when moths get close to the light, they tend to turn away from the light in order to avoid it.
First, moths sense the light in their immediate vicinity and turn toward the direction where the light is greatest.
Second, moths compare the light immediately ahead of them with the light at their current position. If the ratio of 'light just ahead' to 'light here' is below a threshold value, then the moths fly forward toward the light. If the ratio of 'light just ahead' to 'light here' is above a threshold value, then moths turns away from the light. The threshold is determined by the moths' sensitivity to light.
If the moths do not detect any light, or if there simply are no lights in the space where the moths are flying, then the moths flutter about randomly.
Note that light energy is represented in this model as decreasing with the square of the distance from the light source. This characteristic is known as a "one over r-squared relationship," and is comparable to the way electrical field strength decreases with the distance from an electrical charge and the way that gravitational field strength decreases with the distance from a massive body.
HOW TO USE IT
Click the SETUP button to create NUMBER-LIGHTS with LUMINANCE and NUMBER-MOTHS. Click the GO button to start the simulation.
NUMBER-MOTHS: This slider determines how many lights will be created when the SETUP button is pressed.
NUMBER-LIGHTS: This slider determines how many lights will be created when the SETUP button pressed. Note that this value only affects the model at setup.
LUMINANCE: This slider influences how bright the lights will be. When a light is created, it is assigned a luminance of 20 plus a random value between 0 and LUMINANCE. Lights with a higher luminance can be sensed by moths from farther away. Note that changing LUMINANCE while the model is running has no effect.
SENSITIVITY: This slider determines how sensitive the moths are to light. When SENSITIVITY is higher, moths are able to detect a given light source from a greater distance and will turn away from the light source at a greater distance.
TURN-ANGLE: This slider determines the angle that moths turn away when they sense that the ratio of 'light ahead' to 'light here' is above their threshold value.
THINGS TO NOTICE
When the model begins, notice how moths are attracted to the two lights. What happens when the lights are created very close together? What happens when the lights are created very far apart?
Do all of the moths circle the same light? When a moth begins to circle one light, does it ever change to circling the other light? Why or why not?
THINGS TO TRY
Run the simulation without any lights. What can you say about the moths' flight patterns?
With the simulation stopped, use the following values:
- NUMBER-LIGHTS: 1
- LUMINANCE: 1
- NUMBER-MOTHS: 10
- SENSITIVITY: 1.00
- TURN-ANGLE: 95
Notice that, at first, some moths might fly about randomly while others are attracted to the light immediately. Why?
While the model is running increase SENSITIVITY. What happens to the moths' flight patterns? See if you can create conditions in which one or more of the moths can 'escape' from its state of perpetually circling the light.
Vary the TURN-ANGLE. What happens? Why do you think the moths behave as observed with different values of TURN-ANGLE? What value or values do you think are most realistic?
It would be interesting to better understand the flight patterns of the moths in the model. Add code to the model that allows you to track the movements of one or more moths (for example, by using the pen features). Do you see a pattern? Why might such a pattern appear and how can it be altered?
EXTENDING THE MODEL
This model offers only one set of rules for generating moths' circular flight around a light source. Can you think of different ways to define the rules?
Alternatively, can you imagine a way to model an earlier theory of moth behavior in which moths navigate straight lines by orienting themselves to the moon? Do rules that allow moths to navigate according to their position relative to the moon lead to the observed circling behavior around light sources that are much, much closer than the far-away moon?
NETLOGO FEATURES
This model creates a field of light across the patches, using SCALE-COLOR to display the value, and the moths use FACE and MAX-ONE-OF to traverse the light field.
RELATED MODELS
Ants, Ant Lines, Fireflies, Flocking
CREDITS AND REFERENCES
Adams, C. (1989). Why are moths attracted to bright lights? Retrieved May 1, 2005, from http://www.straightdope.com/classics/a5_038.html
To refer to this model in academic publications, please use: Wilensky, U. (2005). NetLogo Moths model. http://ccl.northwestern.edu/netlogo/models/Moths. Center for Connected Learning and Computer-Based Modeling, Northwestern University, Evanston, IL.
In other publications, please use: Copyright 2005 Uri Wilensky. All rights reserved. See http://ccl.northwestern.edu/netlogo/models/Moths for terms of use.
(back to the NetLogo Models Library)