Skip to content

yihua7/Tramission

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Tramission

A tramission model for 2019-nCov

Model

Classify the people into four categories by isolated or not and sick or not:

Number sick healthy
Isolated I K
Not isolated J

We have:

  1. dJ = (b - a) * J * dt
  2. dI = (a * J - r * I) * dt

where a denotes the isolation rate, b the infection rate and r the cure rate.

By solving the partial differential equation above, we get: I = I0 * exp(-r * t) + (a * J0 / (b - a + r)) * exp((b - a) * t)

Furthur modification: the isolation rate a = sigmoid(pt + b) and increases with the time.

Final prediction:

About

A tramission model for 2019-nCov

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages