#include <Omu_IntRKsuite.h>


Public Member Functions | |
| Omu_IntRKsuite () | |
| constructor | |
| ~Omu_IntRKsuite () | |
| destructor | |
| void | F (double *T, double *Y, double *YP) |
| Callback routine for RKsuite for the calculation of system equations. | |
Implementation of predefined methods. | |
| char * | name () |
| Name of a specific integrator. | |
| void | ode_solve (double tstart, VECP y, const VECP u, double tend) |
| Interface to be implemented by derived ODE solvers. | |
Protected Attributes | |
| int | _method |
| Specifies which Runge-Kutta method is to be used (default: 2). | |
| char* Omu_IntRKsuite::name | ( | ) | [inline, virtual] |
Interface to be implemented by derived ODE solvers.
y contains the initial solution and the result for values and sensitivities (dim(y)=_n=_nxt-_nd without sensitivities, dim(y)=_n*(1+_nxt-_nv+_nu) with sensitivities). u contains discrete-time states and control parameters (dim(u)=_m=_nd+_nu).
Implements Omu_IntODE.
| void Omu_IntRKsuite::F | ( | double * | T, | |
| double * | Y, | |||
| double * | YP | |||
| ) |
Callback routine for RKsuite for the calculation of system equations.
int Omu_IntRKsuite::_method [protected] |
Specifies which Runge-Kutta method is to be used (default: 2).
Possible choices are:
.