-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path04_ODEs_SEIRV_code.qmd
65 lines (56 loc) · 1.87 KB
/
04_ODEs_SEIRV_code.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
---
title: "04. Ordinary differential equations (ODEs): SEIRV model"
---
## Practical 1: Susceptible-Exposed-Infectious-Recovered-Vaccinated model implementation
```{r, eval = TRUE, message = FALSE}
library(deSolve) # For solving systems of ODEs
# Define model function
SEIRV_model <- function(times, state, parms)
{
# Get variables
S <- state["S"]
E <- state["E"]
I <- state["I"]
R <- state["R"]
V <- state["V"]
N <- S + E + I + R + V
# Get parameters
beta <- parms["beta"]
delta <- parms["delta"]
gamma <- parms["gamma"]
v <- parms["v"]
# Define differential equations
dS <- -(beta * I / N) * S - v * S
dE <- (beta * I / N) * S - delta * E
dI <- delta * E - gamma * I
dR <- gamma * I
dV <- v * S
res <- list(c(dS, dE, dI, dR, dV))
return (res)
}
# Define parameter values
parms <- c(beta = 0.4, delta = 0.2, gamma = 0.2, v = 0.01)
# Define time to solve equations
times <- seq(from = 0, to = 100, by = 1)
# Define initial conditions
N <- 100
E_0 <- 0
I_0 <- 1
R_0 <- 0
V_0 <- 0
S_0 <- N - E_0 - I_0 - R_0 - V_0
y <- c(S = S_0, E = E_0, I = I_0, R = R_0, V = V_0)
# Solve equations
output_raw <- ode(y = y, times = times, func = SEIRV_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$E, lwd = 2, col = "yellow", type = "l")
lines(output$time, output$I, lwd = 2, col = "red", type = "l")
lines(output$time, output$R, lwd = 2, col = "green", type = "l")
lines(output$time, output$V, lwd = 2, col = "purple", type = "l")
legend("topright", legend = c("Susceptible", "Exposed", "Infectious", "Recovered", "Vaccinated"),
col = c("blue", "yellow", "red", "green", "purple"), lwd = 2, bty = "n")
```