accelerInt  v0.1
rk78_typedefs.hpp
Go to the documentation of this file.
1 
11 #ifndef RK78_TYPEDEFS_HPP
12 #define RK78_TYPEDEFS_HPP
13 
14 #include <boost/numeric/odeint.hpp>
15 using namespace boost::numeric::odeint;
16 
17 //our code
18 extern "C" {
19  #include "dydt.h"
20  #include "header.h"
21  #include "solver_options.h"
22 }
23 
24 #ifdef GENERATE_DOCS
25 namespace rk78 {
26 #endif
27 
29 typedef std::vector< double > state_type;
30 
32 typedef runge_kutta_fehlberg78< state_type , double > stepper;
33 
35 typedef controlled_runge_kutta< stepper > controller;
36 
37 //stiffness measure for project
38 //do a binary search to find the maximum available stepsize
39 #ifdef LOG_OUTPUT
40 //#define STIFFNESS_MEASURE
41 #endif
42 #ifdef STIFFNESS_MEASURE
43 #include <boost/numeric/odeint/stepper/controlled_step_result.hpp>
44 #endif
45 
50 class rhs_eval {
51  double m_statevar;
52 public:
54  this->m_statevar = -1;
55  }
56 
57  void set_state_var(const double state_var)
58  {
59  this->m_statevar = state_var;
60  }
61 
62  //wrapper for the pyJac RHS fn
63  void operator() (const state_type &y , state_type &fy , const double t) const
64  {
65  dydt(t, this->m_statevar, &y[0], &fy[0]);
66  }
67 };
68 
69 #ifdef GENERATE_DOCS
70 }
71 #endif
72 
73 #endif
A wrapper class to evaluate the rhs function y&#39; = f(y) stores the state variable, and provides to dyd...
Contains header definitions for the RHS function for the van der Pol example.
An example header file that defines system size and other required methods for integration of the van...
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.
Definition: dydt.c:22
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