Description Usage Arguments Value Examples
This function gives deterministic compartments of the evolving process during the quarantine period. Outputs include travelers status done quarantine and new active confirmed each day during the quarantine period.
1 | deterministic_postquarantine_separate(theta, inp)
|
theta |
parameter |
inp |
is a list include durationquarantine : number of days and ini: initial compartments of arrival |
The average status of arrivals compartments after complete quarantine
1 2 3 4 5 6 7 8 9 10 | ## Not run: ## Initial Condition
S1 = 900
I1 = 100
A1 = 0
x1 = c(S1,I1,A1,0,0,0)#
days= 14
inp = list(durationquarantine = days, ini = x1)
theta0 = c(0,0,1/14,3/100,1,.5)
deterministic_postquarantine_separate(theta0,inp)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.