This page was automatically generated by NetLogo 3.0.2. Questions, problems? Contact feedback@ccl.northwestern.edu.
The applet requires Java 1.4.1 or higher. It will not run on Windows 95 or Mac OS 8 or 9. Mac users must have OS X 10.2.6 or higher and use a browser that supports Java 1.4. (Safari works, IE does not. Mac OS X comes with Safari. Open Safari and set it as your default web browser under Safari/Preferences/General.) On other operating systems, you may obtain the latest Java plugin from Sun's Java site.
Tree Growth Simulation
an experiment in emergence
created with NetLogo
view/download model file: tree.nlogo
WHAT IS IT?
-----------
In an attempt to learn a bit about how Netlogo works, I decided to try to model the growth of a tree.
HOW IT WORKS
------------
The model begins with a single agent at the bottom of the screen, which moves upwards (grows toward the sun), branches (creates a second agent), and possibly dies on each step of growth.
HOW TO USE IT
-------------
There are several controls to play with.
THINGS TO NOTICE
----------------
Note the slider at the top of the screen is all the way to the right. This makes the tree draw immediately. As you slide it to the left, it slows down the program so that you can observe the tree 'growing.'
Notice that when a new branch is created, it and the branch it came from are each slightly smaller in width.
WARNING: Since branches multiply exponentially, it's best to clear the screen and start over with the Setup button after creating a tree. This is why the Grow_Until button only goes up to 10 - your computer may lock up trying to complete more cycles.
THINGS TO TRY
-------------
Try setting the Growth_Rate very low and the Branching_Frequency to 1. Notice that sometimes the tree grows down and out the top of the screen. The primitive I used in the code was towards-nowrap, which returns the direction of the goal patch without accounting for the screen wrapping (which can be the shortest path). Yet in some extreme examples, the tree still grows roots. I haven't yet figured out why - maybe you can.
EXTENDING THE MODEL
-------------------
I'd be interested in knowing if anyone adds anything interesting.
I considered starting the tree in the center of the screen and starting with 2 agents doing the exact same thing, except that one will aim down for roots at the same time that one aims up for branches. It might be interesting to see what kind of symmetry occurs. I once heard that a tree's roots spread out as far as its branches. Perhaps the same would happen with our virtual tree.
CREDITS AND REFERENCES
----------------------
Kathleen Maffei
kmaffei@brynmawr.edu