Ember
|
#include "mathUtils.h"
Classes | |
class | ODE |
Abstract base class for an ODE initial value problem that can be integrated by an Integrator. More... | |
class | TridiagonalODE |
A system of linear ODEs represented by a tridiagonal matrix. More... | |
class | Integrator |
Abstract base class for an ODE integrator that can integrate instances of class ODE. More... | |
class | ExplicitIntegrator |
Integrates an ODE defined as ydot = f(t,y) using the explicit Euler method. More... | |
class | TridiagonalIntegrator |
Integrator using 1st and 2nd order BDF for tridiagonal systems, with matrix inversions done using the Thomas algorithm. More... | |