SlideShare uma empresa Scribd logo
1 de 24
Baixar para ler offline
Jean-Luc CAUT - 2014
Introduction 
Branching model 
SIR model 
Cellular Automaton model
Introduction 
Branching model 
SIR model 
Cellular Automaton model
The study of epidemic disease has always been a topic where biological issues mix with social ones. 
When we talk about epidemic disease, we will be thinking of contagious diseases caused by biological pathogens, things like influenza, measles, and today Ebola or Marburg fever diseases, which spread from person to person. 
Epidemics can pass explosively through a population. In extreme cases, a single disease outbreak can have a significant effect on a whole civilization, as with the epidemics started by the arrival of Europeans in the Americas, or the outbreak of bubonic plague that killed 20% of the population of Europe over a seven-year period in the 1300s. 
The patterns by which epidemics spread through groups of people is determined not just by the properties of the pathogen carrying it, including its contagiousness, the length of its infectious period, and its severity, but also by network structures within the population it is affecting.
But more generally, the opportunities for a disease to spread are given by a contact network: there is a node for each person, and an edge if two people come into contact with each other in a way that makes it possible for the disease to spread from one to the other. 
The transmission from one person to another is a sufficiently complex and unobservable process at the person-to-person level that it is most useful to model it as random. 
That is, we will generally assume that when two people are directly linked in the contact network, and one of them has the disease, there is a given probability that he or she will pass it to the other. 
This use of randomness allows us to abstract away questions about the mechanics of how one person catches a disease from another for which we have no useful simple models.
Introduction 
Branching model 
SIR model 
Cellular Automaton model
The simplest model of contagion, which we refer to as a branching process is working as follows. 
(First wave.) Suppose that a person carrying a new disease enters a population, and transmits it to each person he meets independently with a probability of p. Further, suppose that he meets k people while he is contagious; let’s call these k people the first wave of the epidemic. 
Based on the random transmission of the disease from the initial person, some of the people in the first wave may get infected with the disease, while others may not. 
(Second wave.) Now, each person in the first wave goes out into the population and meets k different people, resulting in a second wave of k · k = k2 people. Each infected person in the first wave passes the disease independently to each of the k second-wave people they meet, again independently with probability p. 
(Subsequent waves.) Further waves are formed in the same way, by having each person in the current wave meet k new people, passing the disease to each independently with probability p.
Thus the contact network for this epidemic can be drawn as in figure below 
(with k = 3 land only the first three waves shown). We refer to such a network as a tree. 
This tree is a representation of the Ebola spreading process where each person contaminated will also contaminate from 1 to 4 other persons.
Basic Reproductive Number and a Dichotomy for Branching Processes 
So there are only two possibilities for a disease in the branching process model: 
If the disease ever reaches a wave where it fails to infect anyone, then it has died out: since people in future waves can only catch the disease from others higher up in the tree, no one in any future wave will be infected either. 
Or it continues to infect people in every wave, proceeding infinitely through the contact network. 
It turns out that there is a simple condition to tell these two possibilities apart, based on a quantity called the basic reproductive number of the disease. 
The basic reproductive number, denoted R0 , is the expected number of new cases of the disease caused by a single individual. Since in our model everyone meets k new people and infects each with probability p, the basic reproductive number here is given by R0 = pk. 
The outcome of the disease in a branching process model is determined by whether the basic reproductive number is smaller or larger than 1. 
If R0 < 1, then with probability 1, the disease dies out after a finite 
number of waves. 
If R0 > 1, then with probability greater than 0 the disease 
persists by infecting at least one person in each wave.
Here below a real Ebola propagation with k = 10 in Gabon in 2001. 
Ebola: Human transmission of the disease
Introduction 
Branching model 
SIR model 
Cellular Automaton model
The SIR epidemic model can be applied to any network model structure. 
To do this, we preserve the basic ingredients of the branching process model at the level of individual nodes, but make the contact structure much more general. An individual node in the branching process model goes through three potential stages during the course of the epidemic: 
Susceptible: Before the node has caught the disease, it is susceptible to infection from 
its neighbors. 
Infectious: Once the node has caught the disease, it is infectious and has some probability of infecting each of its susceptible neighbors. 
Recovered: After a particular node has experienced the full infectious period, this node is removed from consideration, since it no longer poses a threat of future infection.
This model was for the first time proposed by O. Kermack and Anderson Gray McKendrick as a special case of what we now call Kermack-McKendrick theory, and followed work McKendrick had done with the Ronald Ross. 
The dynamics of the SIR model are given by the system of Ordinary Differential Equations: 
Where b is the rate at which an infected person infects a susceptible, and g is the recovery rate of infected people. 
Where: 
- S(t) : Number of persons susceptible to be infected by the pathogen agent 
- I(t) : Number of infectious persons 
- R(t) : Number of persons that recovered 
풅푺 풅풕 =− 휷푺푰 
풅푰 풅풕 =휷푺푰 − 휸푰 
풅푹 풅풕 =휸푰
This system is non-linear, and does not admit a generic analytic solution. Nevertheless, significant results can be derived analytically. 
Firstly note that from: 
it follows that: 
expressing in mathematical terms the constancy of population N. Note that the above relationship implies that one need only study the equation for two of the three variables. 
Secondly, we note that the dynamics of the infectious class depends on the following ratio: 
풅푺 풅풕 + 풅푰 풅풕 + 풅푹 풅풕 =ퟎ 
푺풕+ 푰풕+푹(풕) = N = constant 
푹ퟎ= 휷 휸 N
The SIR model developed in Python is set with the following data for simulating Ebola outbreak in a total population of 1.000 people. 
Assuming that the population is quarantined and no additional population is added during the period. 
For Ebola: 
휸 = 1/10 (Recovery rate) 
N = S + I + R = 1.000 (Total population ) 
I(0) = 1 (Initial infected population ) 
휷 = 0.3 (Infection rate) 
푹ퟎ = 3 ( 1< 푹ퟎ <4 )
. Resolution of SIR Ordinary Differential Equation system with python:
. Resolution of SIR Ordinary Differential Equation system with python:
Introduction 
Branching model 
SIR model 
Cellular Automaton model
Cellular Automaton is more appropriate when it comes to visualize the propagation of a disease on a map. 
Cellular automata (CA) consist of dicrete agents or particules, which occupy some or all sites of a regular lattice. 
These particules have a discrete or continuous internal state variables and a set of rules describing the evolution of their state and position. 
The change of state of particule depends on the current state of the particule and those of neighboring particles. 
Concerning my Ebola CA developped in Python, 푹ퟎ ∈ {1;4} meaning that each contaminated cell is going to contaminate between 1 to 4 cells during its contagious state. In my model I am using a probabilistic method when deciding which particules are going to be contaminated thus using Normal law and a Monte-Carlo method. 
More each contaminated cell will have a probability of 70% to die thus allowing only 30% of recovery rate as per current Ebola disease in west Africa.
Cellular Automaton principles 
The CA starts with a single infected cell (in red). The first step will test all its eigth neighbors in order to check if they are susceptible (in blue) to be infected. 
Assuming that all the eight neighbors are susceptible we launch a random process in order to contaminate between 1 to 4 of these eight susceptible cells. 
After that we are starting a new random process implementing a normal law N(0,1) in order to change the internal state of the Infected cell thus killing it with a 70% death rate probability. 
In order to take into account that contaminated cells are not statics nor quarantined the CA is simulating some movements and contaminates randomly some cells elsewhere in the city.
Presentation of the Cellular Automaton 
The CA is representing a city composed by 7.000 cells or houses. Some of them are free (in white), orange cells are representing streets, green cells are for parks, dark blue cell is for susceptible to be infected, red is the infected, and cyan is for recovered .
Visualization of the propagation
Visualization of the propagation

Mais conteúdo relacionado

Destaque

SOFTWARE AND WEB TECHNOLOGY
SOFTWARE AND WEB TECHNOLOGYSOFTWARE AND WEB TECHNOLOGY
SOFTWARE AND WEB TECHNOLOGYRasha Kamal
 
Analisis Pemodelan Lokasi TPS Kecamatan Banyumanik, Semarang
Analisis Pemodelan Lokasi TPS Kecamatan Banyumanik, SemarangAnalisis Pemodelan Lokasi TPS Kecamatan Banyumanik, Semarang
Analisis Pemodelan Lokasi TPS Kecamatan Banyumanik, SemarangSally Indah N
 
Pest eller kolera
Pest eller koleraPest eller kolera
Pest eller koleraemjo91
 
Dokumen.tips pengenalan microsoft-microsoft-word-2003
Dokumen.tips pengenalan microsoft-microsoft-word-2003Dokumen.tips pengenalan microsoft-microsoft-word-2003
Dokumen.tips pengenalan microsoft-microsoft-word-2003onebajo
 
KALKULUS IV - Persamaan Diferensial Linear
KALKULUS IV - Persamaan Diferensial LinearKALKULUS IV - Persamaan Diferensial Linear
KALKULUS IV - Persamaan Diferensial LinearMellya Silaban
 
Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...
Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...
Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...ILRI
 
Markov chain and SIR epidemic model (Greenwood model)
Markov chain and SIR epidemic model (Greenwood model)Markov chain and SIR epidemic model (Greenwood model)
Markov chain and SIR epidemic model (Greenwood model)writwik mandal
 
Computational Epidemiology as a scientific computing area: cellular automata ...
Computational Epidemiology as a scientific computing area: cellular automata ...Computational Epidemiology as a scientific computing area: cellular automata ...
Computational Epidemiology as a scientific computing area: cellular automata ...Jones Albuquerque
 
Anova 1way &amp; uji lanjut
Anova 1way &amp; uji lanjutAnova 1way &amp; uji lanjut
Anova 1way &amp; uji lanjutSuci Agustina
 
Simulation Program and Instructional Games
Simulation Program and Instructional GamesSimulation Program and Instructional Games
Simulation Program and Instructional GamesAyrang
 
Pelatihan singkat olah data dengan software spss
Pelatihan singkat olah data dengan software spssPelatihan singkat olah data dengan software spss
Pelatihan singkat olah data dengan software spssprana gio
 
Bahan ajar Sistem Persamaan Linier Dua Variabel
Bahan ajar Sistem Persamaan Linier Dua VariabelBahan ajar Sistem Persamaan Linier Dua Variabel
Bahan ajar Sistem Persamaan Linier Dua Variabelfebri rahmedia sari
 
Classroom-Based Teaching Strategies
Classroom-Based Teaching StrategiesClassroom-Based Teaching Strategies
Classroom-Based Teaching StrategiesAJ Briones
 
Teaching and Learning with Simulation Environments - Profº Helder
Teaching and Learning with Simulation Environments - Profº HelderTeaching and Learning with Simulation Environments - Profº Helder
Teaching and Learning with Simulation Environments - Profº HelderEdson Felix Dos Santos
 
EdTech 2 Instructional Software
EdTech 2 Instructional SoftwareEdTech 2 Instructional Software
EdTech 2 Instructional SoftwareJehan Sanchez
 
Algoritma dan pemrograman - Disusun oleh Fitri Ratna Dewi
Algoritma dan pemrograman - Disusun oleh Fitri Ratna DewiAlgoritma dan pemrograman - Disusun oleh Fitri Ratna Dewi
Algoritma dan pemrograman - Disusun oleh Fitri Ratna DewiFitri Ratna Dewi
 
Pertemuan 1 - epidemiologi penyakit menular
Pertemuan   1 - epidemiologi penyakit menularPertemuan   1 - epidemiologi penyakit menular
Pertemuan 1 - epidemiologi penyakit menularLila Kania
 

Destaque (20)

SOFTWARE AND WEB TECHNOLOGY
SOFTWARE AND WEB TECHNOLOGYSOFTWARE AND WEB TECHNOLOGY
SOFTWARE AND WEB TECHNOLOGY
 
Dasar Dasar MATLAB
Dasar Dasar MATLABDasar Dasar MATLAB
Dasar Dasar MATLAB
 
Analisis Pemodelan Lokasi TPS Kecamatan Banyumanik, Semarang
Analisis Pemodelan Lokasi TPS Kecamatan Banyumanik, SemarangAnalisis Pemodelan Lokasi TPS Kecamatan Banyumanik, Semarang
Analisis Pemodelan Lokasi TPS Kecamatan Banyumanik, Semarang
 
Pest eller kolera
Pest eller koleraPest eller kolera
Pest eller kolera
 
Dokumen.tips pengenalan microsoft-microsoft-word-2003
Dokumen.tips pengenalan microsoft-microsoft-word-2003Dokumen.tips pengenalan microsoft-microsoft-word-2003
Dokumen.tips pengenalan microsoft-microsoft-word-2003
 
KALKULUS IV - Persamaan Diferensial Linear
KALKULUS IV - Persamaan Diferensial LinearKALKULUS IV - Persamaan Diferensial Linear
KALKULUS IV - Persamaan Diferensial Linear
 
3.algoritma dasar
3.algoritma dasar3.algoritma dasar
3.algoritma dasar
 
Bahan Ajar Limit Fungsi
Bahan Ajar Limit FungsiBahan Ajar Limit Fungsi
Bahan Ajar Limit Fungsi
 
Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...
Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...
Modelling malaria transmission dynamics in irrigated areas of Tana River Coun...
 
Markov chain and SIR epidemic model (Greenwood model)
Markov chain and SIR epidemic model (Greenwood model)Markov chain and SIR epidemic model (Greenwood model)
Markov chain and SIR epidemic model (Greenwood model)
 
Computational Epidemiology as a scientific computing area: cellular automata ...
Computational Epidemiology as a scientific computing area: cellular automata ...Computational Epidemiology as a scientific computing area: cellular automata ...
Computational Epidemiology as a scientific computing area: cellular automata ...
 
Anova 1way &amp; uji lanjut
Anova 1way &amp; uji lanjutAnova 1way &amp; uji lanjut
Anova 1way &amp; uji lanjut
 
Simulation Program and Instructional Games
Simulation Program and Instructional GamesSimulation Program and Instructional Games
Simulation Program and Instructional Games
 
Pelatihan singkat olah data dengan software spss
Pelatihan singkat olah data dengan software spssPelatihan singkat olah data dengan software spss
Pelatihan singkat olah data dengan software spss
 
Bahan ajar Sistem Persamaan Linier Dua Variabel
Bahan ajar Sistem Persamaan Linier Dua VariabelBahan ajar Sistem Persamaan Linier Dua Variabel
Bahan ajar Sistem Persamaan Linier Dua Variabel
 
Classroom-Based Teaching Strategies
Classroom-Based Teaching StrategiesClassroom-Based Teaching Strategies
Classroom-Based Teaching Strategies
 
Teaching and Learning with Simulation Environments - Profº Helder
Teaching and Learning with Simulation Environments - Profº HelderTeaching and Learning with Simulation Environments - Profº Helder
Teaching and Learning with Simulation Environments - Profº Helder
 
EdTech 2 Instructional Software
EdTech 2 Instructional SoftwareEdTech 2 Instructional Software
EdTech 2 Instructional Software
 
Algoritma dan pemrograman - Disusun oleh Fitri Ratna Dewi
Algoritma dan pemrograman - Disusun oleh Fitri Ratna DewiAlgoritma dan pemrograman - Disusun oleh Fitri Ratna Dewi
Algoritma dan pemrograman - Disusun oleh Fitri Ratna Dewi
 
Pertemuan 1 - epidemiologi penyakit menular
Pertemuan   1 - epidemiologi penyakit menularPertemuan   1 - epidemiologi penyakit menular
Pertemuan 1 - epidemiologi penyakit menular
 

Semelhante a Modelisation of Ebola Hemoragic Fever propagation in a modern city

Mathematical Model of Varicella Zoster Virus - Abbie Jakubovic
Mathematical Model of Varicella Zoster Virus - Abbie JakubovicMathematical Model of Varicella Zoster Virus - Abbie Jakubovic
Mathematical Model of Varicella Zoster Virus - Abbie JakubovicAbbie Jakubovic
 
Niall_McCarra_FYP_Final_Draft
Niall_McCarra_FYP_Final_DraftNiall_McCarra_FYP_Final_Draft
Niall_McCarra_FYP_Final_DraftNiall McCarra
 
A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...
A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...
A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...IJCNCJournal
 
The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...
The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...
The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...CSCJournals
 
Simulation rules are almost the same to what I coded using Python bu.pdf
Simulation rules are almost the same to what I coded using Python bu.pdfSimulation rules are almost the same to what I coded using Python bu.pdf
Simulation rules are almost the same to what I coded using Python bu.pdfsnewfashion
 
Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...
Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...
Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...IOSR Journals
 
Session ii g3 overview epidemiology modeling mmc
Session ii g3 overview epidemiology modeling mmcSession ii g3 overview epidemiology modeling mmc
Session ii g3 overview epidemiology modeling mmcUSD Bioinformatics
 
MathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquation
MathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquationMathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquation
MathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquationAlexander Kaunzinger
 
Modeling and Simulation of Spread and Effect of Malaria Epidemic
Modeling and Simulation of Spread and Effect of Malaria EpidemicModeling and Simulation of Spread and Effect of Malaria Epidemic
Modeling and Simulation of Spread and Effect of Malaria EpidemicWaqas Tariq
 
ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...
ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...
ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...Daniel Katz
 
Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...
Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...
Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...IJERA Editor
 
The local and global stability of the disease free equilibrium in a co infect...
The local and global stability of the disease free equilibrium in a co infect...The local and global stability of the disease free equilibrium in a co infect...
The local and global stability of the disease free equilibrium in a co infect...iosrjce
 
PDF Problem III - Langley-Tucker - D1 - Cobras
PDF Problem III - Langley-Tucker - D1 - CobrasPDF Problem III - Langley-Tucker - D1 - Cobras
PDF Problem III - Langley-Tucker - D1 - CobrasMadison Lewis
 
Epidemiological modelling
Epidemiological modellingEpidemiological modelling
Epidemiological modellingSumit Das
 
Sensitivity Analysis of the Dynamical Spread of Ebola Virus Disease
Sensitivity Analysis of the Dynamical Spread of Ebola Virus DiseaseSensitivity Analysis of the Dynamical Spread of Ebola Virus Disease
Sensitivity Analysis of the Dynamical Spread of Ebola Virus DiseaseAI Publications
 
Preparing for armageddon
Preparing for armageddonPreparing for armageddon
Preparing for armageddonRBKC
 

Semelhante a Modelisation of Ebola Hemoragic Fever propagation in a modern city (20)

Mathematical Model of Varicella Zoster Virus - Abbie Jakubovic
Mathematical Model of Varicella Zoster Virus - Abbie JakubovicMathematical Model of Varicella Zoster Virus - Abbie Jakubovic
Mathematical Model of Varicella Zoster Virus - Abbie Jakubovic
 
Niall_McCarra_FYP_Final_Draft
Niall_McCarra_FYP_Final_DraftNiall_McCarra_FYP_Final_Draft
Niall_McCarra_FYP_Final_Draft
 
A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...
A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...
A COMPUTER VIRUS PROPAGATION MODEL USING DELAY DIFFERENTIAL EQUATIONS WITH PR...
 
The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...
The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...
The SIR Model and the 2014 Ebola Virus Disease Outbreak in Guinea, Liberia an...
 
Simulation rules are almost the same to what I coded using Python bu.pdf
Simulation rules are almost the same to what I coded using Python bu.pdfSimulation rules are almost the same to what I coded using Python bu.pdf
Simulation rules are almost the same to what I coded using Python bu.pdf
 
Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...
Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...
Modeling the Effect of Variation of Recruitment Rate on the Transmission Dyna...
 
Session ii g3 overview epidemiology modeling mmc
Session ii g3 overview epidemiology modeling mmcSession ii g3 overview epidemiology modeling mmc
Session ii g3 overview epidemiology modeling mmc
 
MathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquation
MathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquationMathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquation
MathematicallyModelingEpidemicsThroughtheUseoftheReed-FrostEquation
 
Modeling and Simulation of Spread and Effect of Malaria Epidemic
Modeling and Simulation of Spread and Effect of Malaria EpidemicModeling and Simulation of Spread and Effect of Malaria Epidemic
Modeling and Simulation of Spread and Effect of Malaria Epidemic
 
ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...
ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...
ICPSR - Complex Systems Models in the Social Sciences - Bonus Content - Profe...
 
Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...
Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...
Mathematical Modeling Of Syphilis Disease A Case Study With Reference To Anan...
 
Ijetr021115
Ijetr021115Ijetr021115
Ijetr021115
 
Ijetr021115
Ijetr021115Ijetr021115
Ijetr021115
 
The local and global stability of the disease free equilibrium in a co infect...
The local and global stability of the disease free equilibrium in a co infect...The local and global stability of the disease free equilibrium in a co infect...
The local and global stability of the disease free equilibrium in a co infect...
 
Ijsea04031004
Ijsea04031004Ijsea04031004
Ijsea04031004
 
PDF Problem III - Langley-Tucker - D1 - Cobras
PDF Problem III - Langley-Tucker - D1 - CobrasPDF Problem III - Langley-Tucker - D1 - Cobras
PDF Problem III - Langley-Tucker - D1 - Cobras
 
Epidemiological modelling
Epidemiological modellingEpidemiological modelling
Epidemiological modelling
 
Sensitivity Analysis of the Dynamical Spread of Ebola Virus Disease
Sensitivity Analysis of the Dynamical Spread of Ebola Virus DiseaseSensitivity Analysis of the Dynamical Spread of Ebola Virus Disease
Sensitivity Analysis of the Dynamical Spread of Ebola Virus Disease
 
Preparing for armageddon
Preparing for armageddonPreparing for armageddon
Preparing for armageddon
 
Al04606233238
Al04606233238Al04606233238
Al04606233238
 

Último

Gas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptxGas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptxGiovaniTrinidad
 
linear Regression, multiple Regression and Annova
linear Regression, multiple Regression and Annovalinear Regression, multiple Regression and Annova
linear Regression, multiple Regression and AnnovaMansi Rastogi
 
DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...
DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...
DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...HafsaHussainp
 
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Sérgio Sacani
 
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPRPirithiRaju
 
CHROMATOGRAPHY PALLAVI RAWAT.pptx
CHROMATOGRAPHY  PALLAVI RAWAT.pptxCHROMATOGRAPHY  PALLAVI RAWAT.pptx
CHROMATOGRAPHY PALLAVI RAWAT.pptxpallavirawat456
 
Immunoblott technique for protein detection.ppt
Immunoblott technique for protein detection.pptImmunoblott technique for protein detection.ppt
Immunoblott technique for protein detection.pptAmirRaziq1
 
How we decide powerpoint presentation.pptx
How we decide powerpoint presentation.pptxHow we decide powerpoint presentation.pptx
How we decide powerpoint presentation.pptxJosielynTars
 
complex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdfcomplex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdfSubhamKumar3239
 
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2AuEnriquezLontok
 
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep LearningCombining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learningvschiavoni
 
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11GelineAvendao
 
DECOMPOSITION PATHWAYS of TM-alkyl complexes.pdf
DECOMPOSITION PATHWAYS of TM-alkyl complexes.pdfDECOMPOSITION PATHWAYS of TM-alkyl complexes.pdf
DECOMPOSITION PATHWAYS of TM-alkyl complexes.pdfDivyaK787011
 
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptxGENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptxRitchAndruAgustin
 
Science (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and PitfallsScience (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and PitfallsDobusch Leonhard
 
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...D. B. S. College Kanpur
 
Abnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptxAbnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptxzeus70441
 
Observational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsObservational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsSérgio Sacani
 
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...Christina Parmionova
 

Último (20)

Gas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptxGas-ExchangeS-in-Plants-and-Animals.pptx
Gas-ExchangeS-in-Plants-and-Animals.pptx
 
PLASMODIUM. PPTX
PLASMODIUM. PPTXPLASMODIUM. PPTX
PLASMODIUM. PPTX
 
linear Regression, multiple Regression and Annova
linear Regression, multiple Regression and Annovalinear Regression, multiple Regression and Annova
linear Regression, multiple Regression and Annova
 
DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...
DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...
DOG BITE management in pediatrics # for Pediatric pgs# topic presentation # f...
 
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
Observation of Gravitational Waves from the Coalescence of a 2.5–4.5 M⊙ Compa...
 
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
6.2 Pests of Sesame_Identification_Binomics_Dr.UPR
 
CHROMATOGRAPHY PALLAVI RAWAT.pptx
CHROMATOGRAPHY  PALLAVI RAWAT.pptxCHROMATOGRAPHY  PALLAVI RAWAT.pptx
CHROMATOGRAPHY PALLAVI RAWAT.pptx
 
Immunoblott technique for protein detection.ppt
Immunoblott technique for protein detection.pptImmunoblott technique for protein detection.ppt
Immunoblott technique for protein detection.ppt
 
How we decide powerpoint presentation.pptx
How we decide powerpoint presentation.pptxHow we decide powerpoint presentation.pptx
How we decide powerpoint presentation.pptx
 
complex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdfcomplex analysis best book for solving questions.pdf
complex analysis best book for solving questions.pdf
 
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
LESSON PLAN IN SCIENCE GRADE 4 WEEK 1 DAY 2
 
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep LearningCombining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
Combining Asynchronous Task Parallelism and Intel SGX for Secure Deep Learning
 
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
WEEK 4 PHYSICAL SCIENCE QUARTER 3 FOR G11
 
DECOMPOSITION PATHWAYS of TM-alkyl complexes.pdf
DECOMPOSITION PATHWAYS of TM-alkyl complexes.pdfDECOMPOSITION PATHWAYS of TM-alkyl complexes.pdf
DECOMPOSITION PATHWAYS of TM-alkyl complexes.pdf
 
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptxGENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
GENERAL PHYSICS 2 REFRACTION OF LIGHT SENIOR HIGH SCHOOL GENPHYS2.pptx
 
Science (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and PitfallsScience (Communication) and Wikipedia - Potentials and Pitfalls
Science (Communication) and Wikipedia - Potentials and Pitfalls
 
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
Fertilization: Sperm and the egg—collectively called the gametes—fuse togethe...
 
Abnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptxAbnormal LFTs rate of deco and NAFLD.pptx
Abnormal LFTs rate of deco and NAFLD.pptx
 
Observational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive starsObservational constraints on mergers creating magnetism in massive stars
Observational constraints on mergers creating magnetism in massive stars
 
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
Charateristics of the Angara-A5 spacecraft launched from the Vostochny Cosmod...
 

Modelisation of Ebola Hemoragic Fever propagation in a modern city

  • 2. Introduction Branching model SIR model Cellular Automaton model
  • 3. Introduction Branching model SIR model Cellular Automaton model
  • 4. The study of epidemic disease has always been a topic where biological issues mix with social ones. When we talk about epidemic disease, we will be thinking of contagious diseases caused by biological pathogens, things like influenza, measles, and today Ebola or Marburg fever diseases, which spread from person to person. Epidemics can pass explosively through a population. In extreme cases, a single disease outbreak can have a significant effect on a whole civilization, as with the epidemics started by the arrival of Europeans in the Americas, or the outbreak of bubonic plague that killed 20% of the population of Europe over a seven-year period in the 1300s. The patterns by which epidemics spread through groups of people is determined not just by the properties of the pathogen carrying it, including its contagiousness, the length of its infectious period, and its severity, but also by network structures within the population it is affecting.
  • 5. But more generally, the opportunities for a disease to spread are given by a contact network: there is a node for each person, and an edge if two people come into contact with each other in a way that makes it possible for the disease to spread from one to the other. The transmission from one person to another is a sufficiently complex and unobservable process at the person-to-person level that it is most useful to model it as random. That is, we will generally assume that when two people are directly linked in the contact network, and one of them has the disease, there is a given probability that he or she will pass it to the other. This use of randomness allows us to abstract away questions about the mechanics of how one person catches a disease from another for which we have no useful simple models.
  • 6. Introduction Branching model SIR model Cellular Automaton model
  • 7. The simplest model of contagion, which we refer to as a branching process is working as follows. (First wave.) Suppose that a person carrying a new disease enters a population, and transmits it to each person he meets independently with a probability of p. Further, suppose that he meets k people while he is contagious; let’s call these k people the first wave of the epidemic. Based on the random transmission of the disease from the initial person, some of the people in the first wave may get infected with the disease, while others may not. (Second wave.) Now, each person in the first wave goes out into the population and meets k different people, resulting in a second wave of k · k = k2 people. Each infected person in the first wave passes the disease independently to each of the k second-wave people they meet, again independently with probability p. (Subsequent waves.) Further waves are formed in the same way, by having each person in the current wave meet k new people, passing the disease to each independently with probability p.
  • 8. Thus the contact network for this epidemic can be drawn as in figure below (with k = 3 land only the first three waves shown). We refer to such a network as a tree. This tree is a representation of the Ebola spreading process where each person contaminated will also contaminate from 1 to 4 other persons.
  • 9. Basic Reproductive Number and a Dichotomy for Branching Processes So there are only two possibilities for a disease in the branching process model: If the disease ever reaches a wave where it fails to infect anyone, then it has died out: since people in future waves can only catch the disease from others higher up in the tree, no one in any future wave will be infected either. Or it continues to infect people in every wave, proceeding infinitely through the contact network. It turns out that there is a simple condition to tell these two possibilities apart, based on a quantity called the basic reproductive number of the disease. The basic reproductive number, denoted R0 , is the expected number of new cases of the disease caused by a single individual. Since in our model everyone meets k new people and infects each with probability p, the basic reproductive number here is given by R0 = pk. The outcome of the disease in a branching process model is determined by whether the basic reproductive number is smaller or larger than 1. If R0 < 1, then with probability 1, the disease dies out after a finite number of waves. If R0 > 1, then with probability greater than 0 the disease persists by infecting at least one person in each wave.
  • 10. Here below a real Ebola propagation with k = 10 in Gabon in 2001. Ebola: Human transmission of the disease
  • 11.
  • 12. Introduction Branching model SIR model Cellular Automaton model
  • 13. The SIR epidemic model can be applied to any network model structure. To do this, we preserve the basic ingredients of the branching process model at the level of individual nodes, but make the contact structure much more general. An individual node in the branching process model goes through three potential stages during the course of the epidemic: Susceptible: Before the node has caught the disease, it is susceptible to infection from its neighbors. Infectious: Once the node has caught the disease, it is infectious and has some probability of infecting each of its susceptible neighbors. Recovered: After a particular node has experienced the full infectious period, this node is removed from consideration, since it no longer poses a threat of future infection.
  • 14. This model was for the first time proposed by O. Kermack and Anderson Gray McKendrick as a special case of what we now call Kermack-McKendrick theory, and followed work McKendrick had done with the Ronald Ross. The dynamics of the SIR model are given by the system of Ordinary Differential Equations: Where b is the rate at which an infected person infects a susceptible, and g is the recovery rate of infected people. Where: - S(t) : Number of persons susceptible to be infected by the pathogen agent - I(t) : Number of infectious persons - R(t) : Number of persons that recovered 풅푺 풅풕 =− 휷푺푰 풅푰 풅풕 =휷푺푰 − 휸푰 풅푹 풅풕 =휸푰
  • 15. This system is non-linear, and does not admit a generic analytic solution. Nevertheless, significant results can be derived analytically. Firstly note that from: it follows that: expressing in mathematical terms the constancy of population N. Note that the above relationship implies that one need only study the equation for two of the three variables. Secondly, we note that the dynamics of the infectious class depends on the following ratio: 풅푺 풅풕 + 풅푰 풅풕 + 풅푹 풅풕 =ퟎ 푺풕+ 푰풕+푹(풕) = N = constant 푹ퟎ= 휷 휸 N
  • 16. The SIR model developed in Python is set with the following data for simulating Ebola outbreak in a total population of 1.000 people. Assuming that the population is quarantined and no additional population is added during the period. For Ebola: 휸 = 1/10 (Recovery rate) N = S + I + R = 1.000 (Total population ) I(0) = 1 (Initial infected population ) 휷 = 0.3 (Infection rate) 푹ퟎ = 3 ( 1< 푹ퟎ <4 )
  • 17. . Resolution of SIR Ordinary Differential Equation system with python:
  • 18. . Resolution of SIR Ordinary Differential Equation system with python:
  • 19. Introduction Branching model SIR model Cellular Automaton model
  • 20. Cellular Automaton is more appropriate when it comes to visualize the propagation of a disease on a map. Cellular automata (CA) consist of dicrete agents or particules, which occupy some or all sites of a regular lattice. These particules have a discrete or continuous internal state variables and a set of rules describing the evolution of their state and position. The change of state of particule depends on the current state of the particule and those of neighboring particles. Concerning my Ebola CA developped in Python, 푹ퟎ ∈ {1;4} meaning that each contaminated cell is going to contaminate between 1 to 4 cells during its contagious state. In my model I am using a probabilistic method when deciding which particules are going to be contaminated thus using Normal law and a Monte-Carlo method. More each contaminated cell will have a probability of 70% to die thus allowing only 30% of recovery rate as per current Ebola disease in west Africa.
  • 21. Cellular Automaton principles The CA starts with a single infected cell (in red). The first step will test all its eigth neighbors in order to check if they are susceptible (in blue) to be infected. Assuming that all the eight neighbors are susceptible we launch a random process in order to contaminate between 1 to 4 of these eight susceptible cells. After that we are starting a new random process implementing a normal law N(0,1) in order to change the internal state of the Infected cell thus killing it with a 70% death rate probability. In order to take into account that contaminated cells are not statics nor quarantined the CA is simulating some movements and contaminates randomly some cells elsewhere in the city.
  • 22. Presentation of the Cellular Automaton The CA is representing a city composed by 7.000 cells or houses. Some of them are free (in white), orange cells are representing streets, green cells are for parks, dark blue cell is for susceptible to be infected, red is the infected, and cyan is for recovered .
  • 23. Visualization of the propagation
  • 24. Visualization of the propagation