-
Notifications
You must be signed in to change notification settings - Fork 73
Description
Hi. I found your work very interesting :)
I see you are using a SIR-based model, but that doesn't seem to model the number of deaths. I propose a simple modification to this model. Basically SIR consists of three differential equations:
Here, the number of 'recovery' englobes both cured and deaths. This parameter is represented by γ, and therefore it could be split in two by γ = a + b, where a is the rate of cure, and b is the rate of death. Since the death rate seems to be linear (1.5% in China, for example), this linear decomposition of γ looks precise to me. After this, we can add a new variable k, (Kill rate), and add to the system of equations. Therefore:
I could generate the following graphic using this method:
With S_0 = 200000
However, I am not sure about how to handle this expression:
return alpha * l1 + (1 - alpha)
What is exactly the point of this linear interpolation? Here I will need to add another parameter to compensate for the death rate.
I can open a PR if you guys are interested.
I am also interested in using this software to simulate the situation here in Brazil. I have already collected some data. The idea is that a and b can change according to the situation of the healthcare system.
Thank you.



