Emergence example: pedestrian flows
1 collaborator

Tags
(This model has yet to be categorized with any tags)
Parent of 1 model:
EmergenceWithPerturbation
Model was written in NetLogo 5.3.1
•
Viewed 916 times
•
Downloaded 72 times
•
Run 0 times

To embed this model in another Web site, use the following link:
<iframe src="http://modelingcommons.org/browse/one_model/4770?embedded=true" />
Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)
Comments and Questions
Please start the discussion about this model!
(You'll first need to log in.)
Click to Run Model
globals [changes] ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to setup ca ask patches [ ifelse pycor mod 2 = 0 [set pcolor 8] [set pcolor 9] ] ask n-of n-agents patches [ sprout 1 [ set shape "person" set size 1.2 ifelse random 2 = 0 [set heading 90 set color blue] [set heading 270 set color red] ] ] reset-ticks end to go set changes 0 move tick if ticks > 5000 [stop] end ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; to move ask turtles [ ifelse any? other turtles-on patch-ahead 1 [ ifelse random 2 = 0 [if ycor < max-pycor [if not any? turtles-on patch xcor (ycor + 1) [set ycor ycor + 1 set changes changes + 1]]] [if ycor > min-pycor [if not any? turtles-on patch xcor (ycor - 1) [set ycor ycor - 1 set changes changes + 1]]] ] [ fd 1 ] ] end
There are 3 versions of this model.
Attached files
File | Type | Description | Last updated | |
---|---|---|---|---|
Emergence example: pedestrian flows.png | preview | Preview for 'Emergence example: pedestrian flows' | over 8 years ago, by Giangiacomo Bravo | Download |