library(calculus)
The function ode
provides solvers for systems of ordinary differential equations of the
type:
\[ \frac{dy}{dt} = f(t,y), \quad y(t_0)=y_0 \]
where \(y\) is the vector of state
variables. Two solvers are available: the simpler and faster Euler
scheme1
or the more accurate 4-th order Runge-Kutta method2. Although many
packages already exist to solve ordinary differential equations in R3, they
usually represent the function \(f\)
either with an R function
or with characters
.
While the representation via R functions
is usually more
efficient, the symbolic representation is easier to adopt for beginners
and more flexible for advanced users to handle systems that might have
been generated via symbolic programming. The function ode
supports both the representations and uses hashed
environments
to improve symbolic evaluations.
The vector-valued function \(f\)
representing the system can be specified as a vector of
characters
, or a function
returning a numeric
vector, giving the values of the derivatives at time \(t\). The initial conditions are set with
the argument var
and the time variable can be specified
with timevar
.
\[ \frac{dx}{dt}=x, \quad x_0 = 1 \]
<- "x"
f <- c(x=1)
var <- seq(0, 2*pi, by=0.001)
times <- ode(f = f, var = var, times = times)
x plot(times, x, type = "l")
\[ \frac{dx}{dt}=\cos(t), \quad x_0 = 0 \]
<- "cos(t)"
f <- c(x=0)
var <- seq(0, 2*pi, by=0.001)
times <- ode(f = f, var = var, times = times, timevar = "t")
x plot(times, x, type = "l")
\[ \frac{d}{dt} \begin{bmatrix} x\\ y \end{bmatrix}= \begin{bmatrix} x\\ x(1+\cos(10t)) \end{bmatrix}, \quad \begin{bmatrix} x_0\\y_0 \end{bmatrix}= \begin{bmatrix} 1\\1 \end{bmatrix} \]
<- c("x", "x*(1+cos(10*t))")
f <- c(x=1, y=1)
var <- seq(0, 2*pi, by=0.001)
times <- ode(f = f, var = var, times = times, timevar = "t")
x matplot(times, x, type = "l", lty = 1, col = 1:2)
\[ \frac{d}{dt} \begin{bmatrix} x\\ y \end{bmatrix}= \begin{bmatrix} x\\ y \end{bmatrix}, \quad \begin{bmatrix} x_0\\y_0 \end{bmatrix}= \begin{bmatrix} 1\\2 \end{bmatrix} \]
<- function(x, y) c(x, y)
f <- c(x=1, y=2)
var <- seq(0, 2*pi, by=0.001)
times <- ode(f = f, var = var, times = times)
x matplot(times, x, type = "l", lty = 1, col = 1:2)
\[ \frac{d}{dt} \begin{bmatrix} x\\ y\\ z \end{bmatrix}= \begin{bmatrix} x\\ y\\ y*(1+cos(10*t)) \end{bmatrix}, \quad \begin{bmatrix} x_0\\y_0\\z_0 \end{bmatrix}= \begin{bmatrix} 1\\2\\2 \end{bmatrix} \]
<- function(x, t) c(x[1], x[2], x[2]*(1+cos(10*t)))
f <- c(1,2,2)
var <- seq(0, 2*pi, by=0.001)
times <- ode(f = f, var = var, times = times, timevar = "t")
x matplot(times, x, type = "l", lty = 1, col = 1:3)
Guidotti E (2022). “calculus: High-Dimensional Numerical and Symbolic Calculus in R.” Journal of Statistical Software, 104(5), 1-37. doi:10.18637/jss.v104.i05
A BibTeX entry for LaTeX users is
@Article{calculus,
title = {{calculus}: High-Dimensional Numerical and Symbolic Calculus in {R}},
author = {Emanuele Guidotti},
journal = {Journal of Statistical Software},
year = {2022},
volume = {104},
number = {5},
pages = {1--37},
doi = {10.18637/jss.v104.i05},
}