VAP

VAP preview image

1 collaborator

Default-person Wendy Reynolds (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by the author
Model was written in NetLogo 6.3.0 • Viewed 55 times • Downloaded 3 times • Run 0 times
Download the 'VAP' 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

globals [remain]
turtles-own  [compare]

to setup
  clear-all
  create-turtles 15 [
    setxy random-xcor random-ycor
    set shape "person"
    set color yellow
  ]

  set remain Census - Bundle

  reset-ticks
end 

to go
  ask turtles [
    infect
  ]
  tick
end 

to infect
  if remain > 0 [
    set compare random-float 1
    if rate > compare [
      set color red
      set remain remain - 1
    ]
  ]
end 

There is only one version of this model, created over 1 year ago by Wendy Reynolds.

Attached files

File Type Description Last updated
VAP.png preview Preview for 'VAP' over 1 year ago, by Wendy Reynolds Download

This model does not have any ancestors.

This model does not have any descendants.