Main Page   Namespace List   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members   File Members  

RungeKuttaMover.h

Go to the documentation of this file.
00001 // RungeKuttaMover.h: interface for the CRungeKuttaMover class.
00002 //
00004 
00005 #if !defined(AFX_RUNGEKUTTAMOVER_H__6A06C837_9D31_42BE_9198_7EA02ACF6632__INCLUDED_)
00006 #define AFX_RUNGEKUTTAMOVER_H__6A06C837_9D31_42BE_9198_7EA02ACF6632__INCLUDED_
00007 
00008 #if _MSC_VER > 1000
00009 #pragma once
00010 #endif // _MSC_VER > 1000
00011 
00012 #include "DifferentialEquationMover.h"
00013 
00014 class CRungeKuttaMover : public CDifferentialEquationMover  
00015 {
00016 public:
00017         CRungeKuttaMover();
00018         CRungeKuttaMover(double frequency,double stepSize);
00019         virtual ~CRungeKuttaMover();
00020         void Move(double xInitial, double xFinal, ReactionNetwork *pReactionNetwork);
00021         // overload RungeKuttaStep in derived classes to get methods of different order
00022         virtual void RungeKuttaStep(int nRHS, double *y, double *dydt) = 0;
00023 };
00024 
00025 #endif // !defined(AFX_RUNGEKUTTAMOVER_H__6A06C837_9D31_42BE_9198_7EA02ACF6632__INCLUDED_)

Generated on Mon Nov 3 09:38:14 2003 by doxygen1.2.14 written by Dimitri van Heesch, © 1997-2002