Difference between revisions of "Simulation of pandemic spread"
(Created page with "'''Title:''' Simulation of pandemic spread '''Author:''' Daniel Kopecký '''Method:''' Agent-based model '''Tool:''' NetLogo =Introduction and problem definition= =Meth...") |
(→Variables) |
||
Line 24: | Line 24: | ||
=Variables= | =Variables= | ||
+ | |||
+ | * '''init-population''' - Population at the beginning of the simulation | ||
+ | |||
+ | * '''init-infected''' - Number of infected at the start of the simulation | ||
+ | |||
+ | * '''recovery.rate''' - Rate of recovery of infected individuals | ||
+ | |||
+ | * '''init-immune''' - Number of immune individuals at the beginning of the simulation | ||
+ | |||
+ | * '''quarantine.effort''' - Quarantine effort (affects the chance of infecting an individual) | ||
+ | |||
+ | * '''transmission.rate''' - Rate of virus transmission between individuals | ||
+ | |||
+ | * '''infected-mortality''' - Virus mortality rate | ||
+ | |||
+ | * '''healthcare.capacity''' - Capacity of health facilities (affects the rate of death of individuals) | ||
+ | |||
+ | * '''immunity?''' - Turns immunity on or off | ||
=Output= | =Output= |
Revision as of 15:43, 10 January 2024
Title: Simulation of pandemic spread
Author: Daniel Kopecký
Method: Agent-based model
Tool: NetLogo
Contents
Introduction and problem definition
Method
Model
Environment
Agents
Movement
Spread of infection
End of the simulation
Variables
- init-population - Population at the beginning of the simulation
- init-infected - Number of infected at the start of the simulation
- recovery.rate - Rate of recovery of infected individuals
- init-immune - Number of immune individuals at the beginning of the simulation
- quarantine.effort - Quarantine effort (affects the chance of infecting an individual)
- transmission.rate - Rate of virus transmission between individuals
- infected-mortality - Virus mortality rate
- healthcare.capacity - Capacity of health facilities (affects the rate of death of individuals)
- immunity? - Turns immunity on or off