-
Notifications
You must be signed in to change notification settings - Fork 1
/
04_ODEs_practical.qmd
389 lines (286 loc) · 12.8 KB
/
04_ODEs_practical.qmd
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
---
title: "04. Ordinary differential equations (ODEs)"
---
In this practical, we will use the R package `deSolve` to solve ODE models of infectious disease transmission.
## Practical 1: Solving ODEs using `deSolve`
We will begin by exploring how to use `deSolve` to solve SI, SIR, and SEIR models.
### Susceptible-Infectious model
We'll start by implementing the Susceptible-Infectious (SI) model from the lecture slides as a series of ordinary differential equations, and solve this model using `deSolve`. The model has the following diagram:
![](images/SI_diagram.png)
Here, the force of infection is $\beta I/N$ ($\beta$ = beta), and once infected, individuals can infect others for life.
See if you can code up an SI model using the material from the lecture slides. Use $\beta = 0.4$ as the transmission rate, and solve the model over 0 to 50 days with initial conditions $S(0) = 99, I(0) = 1$. Then plot the output to visualise your results.
The material from the lecture slides on the ODE SI model is summarized here: [ODE SI code](04_ODEs_SI_code.qmd).
Your model's output should look something like this:
```{r echo = FALSE, output = TRUE, message = FALSE}
library(deSolve) # For solving systems of ODEs
# If the deSolve package is not installed, install using:
# install.packages("deSolve")
# Define model function
SI_model <- function(times, state, parms)
{
# Get variables
S <- state["S"]
I <- state["I"]
N <- S + I
# Get parameters
beta <- parms["beta"]
# Define differential equations
dS <- -(beta * I / N) * S
dI <- (beta * I / N) * S
res <- list(c(dS, dI))
return (res)
}
# Define parameter values
parms <- c(beta = 0.4)
# Define time to solve equations
times <- seq(from = 0, to = 50, by = 1)
# Define initial conditions
N <- 100
I_0 <- 1
S_0 <- N - I_0
y <- c(S = S_0, I = I_0)
# Solve equations
output_raw <- ode(y = y, times = times, func = SI_model, parms = parms)
# Convert matrix to data frame for easier manipulation
output <- as.data.frame(output_raw)
# Plot model output
plot(output$time, output$S, type = "l", col = "blue", lwd = 2, ylim = c(0, N),
xlab = "Time", ylab = "Number")
lines(output$time, output$I, lwd = 2, col = "red", type = "l")
legend("topright", legend = c("Susceptible", "Infected"),
col = c("blue", "red"), lwd = 2, bty = "n")
```
1. After you have coded the model, answer the following questions:
(a) Increase the initial number of infectious individuals. What happens to the output?
(b) What does the `by` argument in the `times` vector represent?
(c) Increase the value of the `by` argument. What happens to the output? HINT: plot using `type = "b"` to plot both lines and points.
### Susceptible-Infectious-Recovered model
Now, let's create a Susceptible-Infectious-Recovered (SIR) model. Start by creating a new R script and copying and pasting in your code for the SI model; we will edit this code to create the SIR model. (You can also start from the provided [ODE SI code here](04_ODEs_SI_code.qmd).)
The SIR model has the following diagram:
![](images/SIR_diagram.png)
Here, the force of infection is $\beta I/N$ and the recovery rate is $\gamma$ (gamma).
As before, use $\beta = 0.4$ as the transmission rate, and set $\gamma$ such that the average duration of the infectious period is 5 days. Assume a total population of 100 individuals, one infectious person at time 0, and no recovered people at the start of the outbreak. Solve the model over 100 days.
Working from your SI model, you will need to: change the name of your model function; add the new parameter $\gamma$ to the model function and the `parms` vector; add the new state compartment $R$ to the model function and the `y` vector; and make sure you are using the correct initial conditions, parameter values, and times.
2. Once you have coded the model:
(a) Plot the output of the SIR model with different colours for Susceptible, Infected and Recovered individuals.
(b) Change the value of the transmission rate so that the basic reproduction number is less than one, i.e. $R_0 < 1$. What happens to the output?
### Susceptible-Exposed-Infectious-Recovered model
Now, working from your SIR model, let's create a Susceptible-Exposed-Infectious-Recovered (SEIR) model with the following diagram:
![](images/SEIR_diagram.png)
In this model, once infected, susceptible individuals move to the exposed class. Assume that exposed individuals become infectious after five days.
3. Once you have coded the model:
(a) Plot the output of the SEIR model with different colours for Susceptible, Exposed, Infected and Recovered individuals.
(b) How does the model output differ from the SIR model you coded previously?
### Optional: Add vaccination to the SEIR model
4. Extend the SEIR model to include a vaccinated class:
(a) Draw the model diagram.
(b) Implement the model in R starting from your SEIR code.
We will assume that susceptible individuals are vaccinated at a rate $v = 0.01$. The vaccine is 100% effective, so once vaccinated, individuals cannot become infected. HINT: you will need to create a new class $V$, and you can assume that the initial number of vaccinated individuals is 0.
## Practical 2: Advanced use of `deSolve`
In this practical, we'll be exploring some more advanced uses of the `deSolve` package.
Copy and paste the following R Script into RStudio and follow along with the instructions in the comments:
```{r, eval = FALSE}
######################################################
# ODEs in R: Practical 2 #
######################################################
# Load in the deSolve package
library(deSolve)
# If the package is not installed, install using the install.packages() function
########## PART I. TIME DEPENDENT TRANSMISSION RATE
# The code below is for an SI model with a time dependent transmission rate.
# The transmission rate is a function of the maximum value of beta (beta_max)
# and the period of the cycle in days.
# Define model function
SI_seasonal_model <- function(t, state, parms)
{
# Get variables
S <- state["S"]
I <- state["I"]
N <- S + I
# Get parameters
beta_max <- parms["beta_max"]
period <- parms["period"]
# Calculate time-dependent transmission rate
beta <- beta_max / 2 * (1 + sin(2*pi*t / period))
# Define differential equations
dS <- -(beta * S * I) / N
dI <- (beta * S * I) / N
res <- list(c(dS, dI))
return (res)
}
# Define parameter values
parameters <- c(beta_max = 0.4, period = 10)
# Define time to solve equations
times <- seq(from = 0, to = 50, by = 1)
# 1. Plot the equation of beta against a vector of times to understand the time
# dependent pattern.
# How many days does it take to complete a full cycle?
# How does this relate to the period?
##### YOUR CODE GOES HERE #####
# 2. Now solve the model using the function ode and plot the output
# HINT: you need to write the state vector and use the ode function
# using func = SI_seasonal_model
##### YOUR CODE GOES HERE #####
# 3. Change the period to 50 days and plot the output. What does the model output look like?
# Can you explain why?
########## PART II. USING EVENTS IN DESOLVE
## deSolve can also be used to include 'events'. 'events' are triggered by
# some specified change in the system.
# For example, assume an SI model with births represents infection in a livestock popuation.
# If more than half of the target herd size becomes infected, the infected animals are culled
# at a daily rate of 0.5.
# As we are using an open population model (i.e. a model with births and/or deaths),
# we have two additional parameters governing births: the birth rate b, and the
# target herd size (or carrying capacity), K
# Define model function
SI_open_model <- function(times, state, parms)
{
## Define variables
S <- state["S"]
I <- state["I"]
N <- S + I
# Extract parameters
beta <- parms["beta"]
K <- parms["K"]
b <- parms["b"]
# Define differential equations
dS <- b * N * (K - N) / K - (beta * S * I) / N
dI <- (beta * S * I) / N
res <- list(c(dS, dI))
return (res)
}
# Define time to solve equations
times <- seq(from = 0, to = 100, by = 1)
# Define initial conditions
N <- 100
I_0 <- 1
S_0 <- N - I_0
state <- c(S = S_0, I = I_0)
# 4. Using beta = 0 (no infection risk), K = 100, b = 0.1, and an entirely susceptible
# population (I_0 = 0), investigate how the population grows with S_0 = 1, 50 and 100.
# What size does the population grow to? Why is this?
# Answer:
# How do you increase this threshold?
# Answer:
# Define parameter values
# K is our target herd size, b is the birth rate)
parameters <- c(beta = 0, K = 100, b = 0.1)
# To include an event we need to specify two functions:
# the root function, and the event function.
# The root function is used to trigger the event
root <- function(times, state, parms)
{
# Get variables
S <- state["S"]
I <- state["I"]
N <- S + I
# Get parameters
K <- parms["K"]
# Our condition: more than half of the target herd size becomes infected
# We want our indicator to cross zero when this happens
indicator <- I - K * 0.5
return (indicator)
}
# The event function describes what happens if the event is triggered
event_I_cull <- function(times, state, parms)
{
# Get variables
I <- state["I"]
# Extract parameters
tau <- parms["tau"]
I <- I * (1 - tau) # Cull the infected population
state["I"] <- I # Record new value of I
return (state)
}
# We add the culling rate tau to our parameter vector
parameters <- c(beta = 0.1, K = 100, tau = 0.5, b = 0.1)
# Solve equations
output_raw <- ode(y = state, times = times, func = SI_open_model, parms = parameters,
events = list(func = event_I_cull, root = TRUE), rootfun = root)
# Convert to data frame for easy extraction of columns
output <- as.data.frame(output_raw)
# Plot output
par(mfrow = c(1, 1))
plot(output$time, output$S, type = "l", col = "blue", lwd = 2, ylim = c(0, N),
xlab = "Time", ylab = "Number")
lines(output$time, output$I, lwd = 2, col = "red")
legend("topright", legend = c("Susceptible", "Infected"),
lty = 1, col = c("blue", "red"), lwd = 2, bty = "n")
# 5. What happens to the infection dynamics when the infected animals are culled?
# Answer:
# 6. Assume now that when an infected herd is culled, the same proportion of
# animals is ADDED to the susceptible population.
# HINT: You will need to change the event function to include additions to the
# S state.
##### YOUR CODE GOES HERE #####
# 7. What happens to the infection dynamics when the infected animals are culled?
# How is this different to when only infected animals are culled?
# Answer:
########## PART III. USING RCPP
## Here we will code our differential equations using Rcpp to compare the speed
# of solving the model.
library(Rcpp)
## The SIR Rcpp version can be compiled as follows:
cppFunction(
'List SIR_cpp_model(NumericVector t, NumericVector state, NumericVector parms)
{
// Get variables
double S = state["S"];
double I = state["I"];
double R = state["R"];
double N = S + I + R;
// Get parameters
double beta = parms["beta"];
double gamma = parms["gamma"];
// Define differential equations
double dS = -(beta * S * I) / N;
double dI = (beta * S * I) / N - gamma * I;
double dR = gamma * I;
NumericVector res_vec = NumericVector::create(dS, dI, dR);
List res = List::create(res_vec);
return res;
}
')
# Let's also implement the same model in R for comparison:
SIR_R_model <- function(t, state, parms)
{
# Get variables
S <- state["S"]
I <- state["I"]
R <- state["R"]
N <- S + I + R
# Get parameters
beta <- parms["beta"]
gamma <- parms["gamma"]
# Define differential equations
dS <- -(beta * S * I) / N
dI <- (beta * S * I) / N - gamma * I
dR <- gamma * I
res <- list(c(dS, dI, dR))
return (res)
}
# This can be solved in R using deSolve as follows
# Define time to solve equations
times <- seq(from = 0, to = 100, by = 1)
# Define parameter values
parameters <- c(beta = 0.4, gamma = 0.1)
# Define initial conditions
N <- 100
I_0 <- 1
S_0 <- N - I_0
R_0 <- 0
state <- c(S = S_0, I = I_0, R = R_0)
# Solve equations
output_raw <- ode(y = state, times = times, func = SIR_cpp_model, parms = parameters)
# Convert to data frame for easy extraction of columns
output <- as.data.frame(output_raw)
# plot results
par(mfrow = c(1, 1))
plot(output$time, output$S, type = "l", col = "blue", lwd = 2, ylim = c(0, N),
xlab = "Time", ylab = "Number")
lines(output$time, output$I, lwd = 2, col = "red")
lines(output$time, output$R, lwd = 2, col = "green")
legend( "topright", legend = c("Susceptible", "Infected", "Recovered"),
bg = rgb(1, 1, 1), lty = rep(1, 2), col = c("blue", "red", "green"), lwd = 2, bty = "n")
```
**Solutions to this practical can be accessed [here](04_ODEs_solutions.qmd).**