forked from radh3110/EpiDemoSim-Project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Explanation for Input File.txt
137 lines (100 loc) · 2.85 KB
/
Explanation for Input File.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#This file provides explanation for the input file
2 3 4 #powers for people in awareness level zero, one and two respectively.
0.80 #susceptibility value for people in awareness level zero
0.50 #susceptibility value for people in awareness level one
0.30 #susceptibility value for people in awareness level two
#below are the delay values
50 #we have taken 50 for measure2
80 #we have taken 80 for measure1
100 #we have taken 100 for measure0
#below is a cost matrix
#for people in awareness level zero:
7.00 #cost per individual to reduce susceptibility from s to zero
6.00 #cost per individual to reduce susceptibility from s to s/3
5.00 #cost per individual to reduce susceptibility from s to 2s/3
#for people in awareness level one:
5.00 #cost per individual to reduce susceptibility from s to zero
4.00 #cost per individual to reduce susceptibility from s to s/3
3.00 #cost per individual to reduce susceptibility from s to 2s/3
#for people in awareness level two:
3.00 #cost per individual to reduce susceptibility from s to zero
2.00 #cost per individual to reduce susceptibility from s to s/3
1.00 #cost per individual to reduce susceptibility from s to 2s/3
#As can be seen below, they are the probability values
#I have described here, only for one strategy how it works.
#Rest all being the same.
#The fourth value ie the value of person remaning at susceptibility 's' is calculated directly by subtracting from 1 the sum of probabilities in one row.
#As seen in strategy S0, since all three values in a row are zero, Probability of remaining at Susceptibility 's' even after delay is 1.
Strategy S_phi
#For awareness Level Zero:
0.00 #probability of an individual to reduce susceptibility from 's' to zero
0.00 #probability of an individual to reduce susceptibility from 's' to s/3
0.00 #probability of an individual to reduce susceptibility from 's' to 2s/3
For awareness Level One:
0.00 #probability of an individual to reduce susceptibility from 's' to zero
0.00 #probability of an individual to reduce susceptibility from 's' to s/3
0.00 #probability of an individual to reduce susceptibility from 's' to 2s/3
For awareness Level Two:
0.00 #probability of an individual to reduce susceptibility from 's' to zero
0.00 #probability of an individual to reduce susceptibility from 's' to s/3
0.00 #probability of an individual to reduce susceptibility from 's' to 2s/3
Strategy S1
0.40
0.20
0.20
0.20
0.20
0.40
0.20
0.20
0.40
Strategy S2
0.20
0.20
0.40
0.40
0.20
0.20
0.20
0.20
0.40
Strategy S3
0.20
0.20
0.40
0.20
0.20
0.40
0.40
0.20
0.20
Strategy S_m2
0.00
0.00
1.00
0.00
0.00
1.00
0.00
0.00
1.00
Strategy S_m1
0.00
1.00
0.00
0.00
1.00
0.00
0.00
1.00
0.00
Strategy S_m0
1.00
0.00
0.00
1.00
0.00
0.00
1.00
0.00
0.00