| Class | Description |
---|
| OdeAdamsMoulton |
Solves an initial-value problem for nonstiff ordinary differential equations using
the Adams-Moulton method.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
| OdeExplicitRungeKutta45 |
Solves an initial-value problem for nonstiff ordinary differential equations using
the explicit Runge-Kutta method of order (4)5.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
| OdeGearsBDF |
Solves an initial-value problem for stiff ordinary differential equations using
the Gear’s BDF method.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
| OdeImplicitRungeKutta5 |
Solves an initial-value problem for stiff ordinary differential equations using
the implicit Runge-Kutta method of order 5.
dy(i)/dt = f(i,t,y(1),y(2),...,y(N)).
|
| xBaseOdeRungeKutta |
Represents a base class for the Runge-Kutta classes.
|
| xOdeBase |
Represents the base class for the Odes.
|