H2 Combustion
|
00001 #ifndef zh2_rk4_integrator 00002 #define zh2_rk4_integrator 00003 00004 #include "integrator.h" 00005 00006 namespace h2comb 00007 { 00008 00013 class RungeKutta4Integrator : public Integrator 00014 { 00015 public: 00016 RungeKutta4Integrator(Integrable *s = 0) : Integrator(s){} 00017 void integrate(double T, double deltaT); 00018 }; 00019 00020 } 00021 00022 #endif 00023