This is where you can enter instructions for the observer, patches, and turtles.
Command Center or Command Tab
Where are procedures written?
NetLogo Code Tab
What is a variable?
Something that can be changed.
The creatures in a NetLogo model.
Turtles
The place where you select a simulation to work with
Library
From the Command Center, what would you choose from the drop menu to work with turtles?
Turtles
Can procedures be changed after they have been written?
Yes
In an ecosystem, what are some turtle variables? Name 3
move, eat, reproduce, die
number, color, location
This is what you need to do after you have changed or added code in NetLogo, so that the simulation will run with the new or changed code.
Recompile
The button clicked to arrange a NetLogo simulation?
Setup
When writing NetLogo Code, what does each command need to be paired up with?
a procedure
What does each procedure begin and end with?
To, End
What does in "IF" command do?
Returns one result if something happens and another result if it doesnt.
A tool that displays the number of objects that are present in the current simulation
Monitor
The button clicked to start and stop a NetLogo Simulation?
Go
Write the command to turn turtles pink
set color pink
Write the procedure to create 5 turtles
to setup
create-turtles 5
end
What is: A variable listed at the top of a program and can be used anywhere in the program
Global Variable
The tool used to visualize data in NetLogo
Plot or Graph
How time is measured in NetLogo
Ticks
Write the command to turn patches green
set pcolor green
What will the procedure below do?
to setup-patches
ask patches [set pcolor green]
end
Make all patches turn green when the setup button is pushed
What does this variable do?
[setxy random-xcor random-ycor]
It sets the position for the turtles
What will this procedure do?
To check-death
ask turtles
[if energy <=5 [die]]
end
All turtles will die when their energy level is <= 5
The place that explains what the NetLogo simulation is all about.
Model Info