Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrc-ide/dde
:clock1130::soon::clock9: Delay differential equation solver
https://github.com/mrc-ide/dde
Last synced: about 2 months ago
JSON representation
:clock1130::soon::clock9: Delay differential equation solver
- Host: GitHub
- URL: https://github.com/mrc-ide/dde
- Owner: mrc-ide
- License: other
- Created: 2016-06-15T08:32:26.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-23T20:16:49.000Z (3 months ago)
- Last Synced: 2024-09-25T21:08:20.209Z (3 months ago)
- Language: R
- Homepage: https://mrc-ide.github.io/dde
- Size: 4.45 MB
- Stars: 15
- Watchers: 6
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
# dde
[![Project Status: Active – The project has reached a stable, usable state and is being actively developed.](https://www.repostatus.org/badges/latest/active.svg)](https://www.repostatus.org/#active)
[![R-CMD-check](https://github.com/mrc-ide/dde/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mrc-ide/dde/actions/workflows/R-CMD-check.yaml)
[![codecov.io](https://codecov.io/github/mrc-ide/dde/coverage.svg?branch=master)](https://app.codecov.io/github/mrc-ide/dde?branch=master)
[![](http://www.r-pkg.org/badges/version/dde)](https://cran.r-project.org/package=dde)This package solves ordinary differential equations (ODEs), delay differential equations (DDEs) and discrete-time *difference* (or recursion) equations, perhaps involving delays.
For all the solvers, the target function can be an R function or a compiled function.
## Ordinary and delay differential equations
ODEs are solved with `DOPRI5` and `DOP853`; the 5th order and 8th order Dormand Prince methods [Dormand Prince](https://en.wikipedia.org/wiki/Dormand%E2%80%93Prince_method), based off of [Ernst Hairer's Fortran implementations](http://www.unige.ch/~hairer/software.html), but implemented in C. These integrators support dense output.
To solve DDEs, I use the same approach as Hairer in his `RETARD` algorithm, exploiting the dense output of the Dormand Prince solvers.
This is an alternative approach to fitting delay DDE models to using deSolve. It exists because I have had problems fitting very large DDE systems in deSolve, possibly because the order of interpolation is lower than the order of integration which can cause problems with the overall accuracy of the solution.
By using the dense output, the solution can be computed at any time point the solver has passed to the same accuracy as the solution itself. This sidesteps the interpolation problem at the cost of a bit more book-keeping.
To store the history without using ever-growing (or just huge) amounts of memory, `dde` uses a [ring buffer](https://github.com/mrc-ide/ring) to hold the history over time. This means that the memory required to store the solution does not grow as the total integration length increases (though you still need to pick an amount of memory that scales with the maximum number of steps that span your longest lag at any point in the integration).
These solvers are suitable only for non-stiff problems.
The interface is fairly different to the deSolve interface. A `deSolve` compatible interface may be provided later (see [this issue](https://github.com/mrc-ide/dde/issues/2)).
## Discrete time models
Solving discrete time equations is much simpler; you don't have much choice but just to iterate the model. The package implements this efficiently for compiled models, and also allows models to reference their previous history.
## Installation
Install `dde` from CRAN with
```r
install.packages("dde")
```To install our internally released version (which might be ahead of CRAN) via drat, use
```r
# install.packages("drat") # (if needed)
drat:::add("mrc-ide")
install.packages("dde")
```or install the bleeding edge with
```r
# install.packages("devtools") # (if needed)
devtools::install_gitub("mrc-ide/dde", upgrade = FALSE)
```## License
MIT © Imperial College of Science, Technology and Medicine
Please note that this project is released with a [Contributor Code of Conduct](https://github.com/mrc-ide/dde/blob/master/CONDUCT.md). By participating in this project you agree to abide by its terms.