"Desolve": E Class (Exposed) - After Infection From Virus, Some of Them Are Asymptotic and Are
"Desolve": E Class (Exposed) - After Infection From Virus, Some of Them Are Asymptotic and Are
library(deSolve)
In this model, S (susceptible) is a healthy population which undergo contagion and move to
E class (exposed). After infection from virus, some of them are asymptotic and are
categorised into A group (asymptotic). Others who shows symptoms are moved to I group
(infected). Asymptotic are not showing any visible symptom of the disease and it is much
difficult to identify them. As per study available, SARS CoV-2 virus has a key feature of
asymptotic individuals amounts to 5-80% of the exposed people . We denote this
probability to p. Asymptotic people are assumed to be infectious with reduced (or
enhanced) transmission rate q β 0 . An individual from asymptotic group either shows
symptom after some duration and moves to infected group or remain asymptotic and
recovers from disease. Let γ denote the recovery rate of asymptotic individuals. The
infected may go under treatment with isolation. In this case, they move to recovered group
through Q-group (quarantine/isolation). But some of individuals may not go to isolation
and directly move to recovered group. Let ν denote the recovery rate from infected group
and δ denote recovery rate from quarantine/isolation. The quarantine rate from infected to
isolation group is denoted by α .
Assumptions :
• Dead population is not infectious. Hence the recovered group contains both dead and
recovered people and separated from susceptible after the process.
• Once an individual is recovered from disease, he develops the immunity from the virus
and will not undergo the cycle.
Parameters used:
• λ denotes birth rate of the population and is taken to be = -0.2% per year
• β 0 denotes transmission rate from susceptible to exposed compartment and is taken to
be = 2.5
• q denotes
• μ denotes mortality rate per year and is taken to be = 0.87% per year
• η denotes infection rate for the model
• θ denotes isolation rate of individual
• p denotes probability of exposed people getting infected
• ρ denotes the rate at which asymptotic individuals are infected
• α denotes the quarantine rate from infected to isolation group and is taken to be = 0.9
• ν denotes the recovery rate from infected group and is taken to be = 10/228
• δ denotes recovery rate from quarantine/isolation and is taken to be = 0.03
• γ denotes the recovery rate of asymptotic individuals and is taken to be = 0.5
# combine results
results = c (dS, dE, dI, dQ, dA, dR)
list (results)
}
)
}
lambda_value = -0.002/365
mu_value = 0.0087/365
beta0_value = 2.5
p_value = 0.56
q_value = 1
nu_value = 10/228
eta_value = 0.32
theta_value = 0.01
rho_value = 0.5
alpha_value = 0.9
delta_value = 0.03
gamma_value = 0.5
N=1000
a=N
b=0
c=1
d=0
e=0
f=0
initial_values = c(S=a,E=b,I=c,Q=d,A=e,R=f)