11 #ifndef RK78_TYPEDEFS_HPP 12 #define RK78_TYPEDEFS_HPP 14 #include <boost/numeric/odeint.hpp> 32 typedef runge_kutta_fehlberg78< state_type , double >
stepper;
42 #ifdef STIFFNESS_MEASURE 43 #include <boost/numeric/odeint/stepper/controlled_step_result.hpp> 54 this->m_statevar = -1;
59 this->m_statevar = state_var;
65 dydt(t, this->m_statevar, &y[0], &fy[0]);
A wrapper class to evaluate the rhs function y' = f(y) stores the state variable, and provides to dyd...
Contains header definitions for the RHS function for the van der Pol example.
void dydt(const double t, const double mu, const double *__restrict__ y, double *__restrict__ dy)
An implementation of the RHS of the van der Pol equation.
A file generated by Scons that specifies various options to the solvers.
void set_state_var(const double state_var)
std::vector< double > state_type
state vector
runge_kutta_fehlberg78< state_type, double > stepper
solver type
controlled_runge_kutta< stepper > controller
controller type