Definition in file RungeKutta.h.
#include <Matrix.h>
Go to the source code of this file.
Typedefs | |
typedef Vector(* | ptr2RKFunc )(const double &_time, const Vector &_states, const Matrix &_params) |
Functions | |
Matrix | RungeKuttaSolve (Vector(*odeFunc)(const double &timeInput, const Vector &stateInput, const Matrix &constantsInput), const Vector &_initialConditions, const Matrix &_constants, const double &_timeInitial, const double &_timeFinal, const int &_numSteps) |
Integrate an equation of the form using the Runge-Kutta integration method. |
|
defines a pointer to a Runge-Kutta right-hand side (RHS) function Definition at line 18 of file RungeKutta.h. |
|
Integrate an equation of the form using the Runge-Kutta integration method. The Runge-Kutta integrator uses a right-hand side equation, to compute the integration of the function over the specified time interval, given initial conditions, constants of integration, and number of steps desired (since this is a fixed step integrator).
Definition at line 44 of file RungeKutta.h. |