Antibiotic resistance simple

Antibiotic resistance simple preview image

1 collaborator

Default-person Vishwanath Varma (Author)

Tags

(This model has yet to be categorized with any tags)
Visible to everyone | Changeable by everyone
Model was written in NetLogo 6.1.0 • Viewed 167 times • Downloaded 18 times • Run 0 times
Download the 'Antibiotic resistance simple' 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

turtles-own [ resistance ]

to setup
  clear-all
  create-turtles population [
    set shape "circle"
    set size 1
    setxy random-xcor random-ycor
    set resistance random resist
  ]
  reset-ticks
end 

to go
  ask turtles [
    if resistance > 7 [
      set color red ]
    reproduce
    death
  ]
  tick
end 

to reproduce
  if random-float 100 < rep-rate [
    hatch 1 [ rt random-float 360 fd 1 ]
  ]
end 

to death
  if random-float 100 < death-rate [
    die
  ]
end 

to add-dose
  if random-normal resistance 2 < dose-strength [
    die
  ]
end 

to-report mean-resistance
  report mean [resistance] of turtles
end 

There is only one version of this model, created over 4 years ago by Vishwanath Varma.

Attached files

File Type Description Last updated
Antibiotic resistance simple.png preview Preview for 'Antibiotic resistance simple' over 4 years ago, by Vishwanath Varma Download

This model does not have any ancestors.

This model does not have any descendants.