bees-0.1

No preview image

1 collaborator

Default-person Howard Noble (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 6.0.2 • Viewed 122 times • Downloaded 9 times • Run 0 times
Download the 'bees-0.1' 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 [ bees bee ]
breed [ flowers flower ]

to setup
  ca
  create-bees 100 [
    set shape "bee"
  ]
  ask n-of 100 patches [ set pcolor white ]
  ask patches with [ pcolor = white ] [
    sprout 1 [
      set color one-of [ red green blue ]
      set shape "flower"
      set size 2
    ]
  ]
  reset-ticks
end 

to go
  ask bees [ movement ]
  tick
end 

to movement
  fd 1 
  rt 60 - random 30
end 

There is only one version of this model, created over 5 years ago by Howard Noble.

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.