Rota_project

No preview image

1 collaborator

Default-person Susan Turgeon (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 5.0.5 • Viewed 173 times • Downloaded 17 times • Run 0 times
Download the 'Rota_project' modelDownload this modelEmbed this model

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

breed [adults adult]
breed [children child]

adults-own
[age]

children-own
 [cage]
 
turtles-own 
 [sick?
 immune?]

to setup
  clear-all
  setup-children                      
  setup-adults
  reset-ticks
end 

to setup-children
  create-children 30
  [setxy random-xcor random-ycor
   set color yellow
   set cage random 11]
end 

to setup-adults
  create-adults 100
  [setxy random-xcor random-ycor
    set color blue
    set age (11 + random 50) ]
end 




  ;;create-adults 100 [setxy random-xcor random-ycor set color blue]
                         ;;create-children 30 [setxy random-xcor random-ycor set color yellow]

There is only one version of this model, created over 11 years ago by Susan Turgeon.

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.