by Matthew L Ferguson
Associate Professor of Physics, Boise State University
updated: 20200328
SIR and SEIR in python. Working on Bayesian parameter fitting and sampling of the parameter posterior distribution using the emcee Markov Chain Monte Carlo package and CSSE data with lmfit. https://lmfit.github.io/lmfit-py/fitting.html#minimizer-emcee-calculating-the-posterior-probability-distribution-of-parameters
Parameters: #important part Ro = 5.1 Tr = 12.9 Ta = 1.
start = 0. end = 365.
e = 0.0 # Initial Exposed i = 10.0 # Initial Infectious s = 1e5 - i # Initial Susceptible r = 0.0 # Initial Recovered N = s + e + i + r # Initial population
alpha = 1/Ta beta = Ro/Tr/N #COVID-19,14days,100k gamma = 1/Tr

https://en.wikipedia.org/wiki/Compartmental_models_in_epidemiology#The_SEIR_model

Q? How does Mitigation (like Social Distancing, School Closer and Total Shutdown) effect the solution to the SIR Model?


Matthew L Ferguson, Associate Professor of Physics, Boise State University
with
Bruce N Miller, Emeritus Professor of Physics, Texas Christian University
March 26, 2020
https://en.wikipedia.org/wiki/Compartmental_models_in_epidemiology#Exact_analytical_solutions_to_the_SIR_model Following notation from the above linked page.
At the peak:
$ \frac{dI}{dt}=\left(R_0 \frac{S}{N}-1\right)\gamma I=0$
therefore
Following the analytical solution of Harko et al.(2014)
Harko, Tiberiu; Lobo, Francisco S. N.; Mak, M. K. (2014). "Exact analytical solutions of the Susceptible-Infected-Recovered (SIR) epidemic model and of the SIR model with equal death and birth rates". Applied Mathematics and Computation. 236: 184–194. arXiv:1403.2160. Bibcode:2014arXiv1403.2160H. doi:10.1016/j.amc.2014.03.030.
