Malaria Virus Model

No preview image

1 collaborator

Default-person Nasab Al-Rawas (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.4 • Viewed 263 times • Downloaded 32 times • Run 0 times
Download the 'Malaria Virus Model' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


WHAT IS IT?

this project stimulates the spread of the virus of Malaria. it shows how the mosquitos infect the humans with Malaria and they can only heal when they go to the hospital where the white patches are.

HOW IT WORKS

this game works when you setup the humans and mosquitos. when they're set up you press the go button where they are to be moved around and infected/bitten by the mosquitos. in the game itself you'll realize that there are white patches all around the place which are hospitals. the humans are being vaccinated and healed. when that is done they're let out and they are to be uninfected.

HOW TO USE IT

SETUP so you can set up the humans and the mosquitos and the hosiptals.

GO (FOREVER) so the sickness can spread and be healed once at the hosptial.

CA to clear all

mumPeople slider to see how the sickness is spread differently with more or less people

numMosquitos to see if Malaria is contagious.

THINGS TO NOTICE

(suggested things for the user to notice while running the model)

CREDITS AND REFERENCES

Nasab Ghazi Mr.Schildge

Comments and Questions

Please start the discussion about this model! (You'll first need to log in.)

Click to Run Model

breed [people person]
breed [wolves wolf]

to setup
  create-people 100[
   set shape "person"
   setxy random-xcor random-ycor
   set color blue
  ]

  create-wolves 100 [
   set shape "wolf"
   setxy random-xcor random-ycor
   set color gray
   set pcolor white
  ]
end 

to go
  ask people [
  fd 1
  ]
  infectPerson
  heal
  death
end 

to move
  ask turtles [
  fd 1
  rt random 60 - 30
  ]
end 

to infectPerson
  ask people [
  if any? wolves-here with [color = red]
  [set color red]
  setxy random-xcor random-ycor
  ]
end 

to death
end 

to heal
  ask people with [color = red]
  [if random 10 = 0[set color blue]]
end 

There are 3 versions of this model.

Uploaded by When Description Download
Nasab Al-Rawas over 6 years ago virus Download this version
Nasab Al-Rawas over 6 years ago virus Download this version
Nasab Al-Rawas over 6 years ago Initial upload Download this version

Attached files

No files

This model does not have any ancestors.

This model does not have any descendants.