src/DiffEq/Gamma/Gamma.hpp file

System of gamma SDEs.

Contents

This file implements the time integration of a system of stochastic differential equations (SDEs), with linear drift and linear diagonal diffusion, whose invariant is the joint gamma distribution.

In a nutshell, the equation integrated governs a set of scalars, $0\!\le\!Y_\alpha$ , $\alpha\!=\!1,\dots,N$ , as

\[ \mathrm{d}Y_\alpha(t) = \frac{b_\alpha}{2}\big[S_\alpha - (1-S_\alpha)Y_\alpha\big]\mathrm{d}t + \sqrt{\kappa_\alpha Y_\alpha} \mathrm{d}W_\alpha(t), \qquad \alpha=1,\dots,N \]
\[ \begin{split} \mathrm{d}Y_\alpha(t) = \frac{b_\alpha}{2}\big[S_\alpha - (1-S_\alpha)Y_\alpha\big]\mathrm{d}t + \sqrt{\kappa_\alpha Y_\alpha} \mathrm{d}W_\alpha(t), \\ \alpha=1,\dots,N \end{split} \]

with parameter vectors $b_\alpha > 0$ , $\kappa_\alpha > 0$ , and $0 < S_\alpha < 1$ . Here $\mathrm{d}W_\alpha(t)$ is an isotropic vector-valued Wiener process with independent increments. The invariant distribution is the joint gamma distribution. This system of SDEs consists of N independent equations.

Namespaces

namespace walker
Walker declarations and definitions.

Classes

template<class Init, class Coefficients>
class walker::Gamma
Gamma SDE used polymorphically with DiffEq.