00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #ifndef _EULERIVPODESOLVER_HPP_
00031 #define _EULERIVPODESOLVER_HPP_
00032
00033 #include <boost/serialization/access.hpp>
00034 #include <boost/serialization/base_object.hpp>
00035
00036 #include "AbstractOneStepIvpOdeSolver.hpp"
00037
00038
00039 #include <boost/serialization/export.hpp>
00040
00045 class EulerIvpOdeSolver : public AbstractOneStepIvpOdeSolver
00046 {
00047 private:
00048
00050 friend class boost::serialization::access;
00057 template<class Archive>
00058 void serialize(Archive & archive, const unsigned int version)
00059 {
00060
00061 archive & boost::serialization::base_object<AbstractOneStepIvpOdeSolver>(*this);
00062 }
00063
00064 protected:
00065
00079 void CalculateNextYValue(AbstractOdeSystem* pAbstractOdeSystem,
00080 double timeStep,
00081 double time,
00082 std::vector<double>& rCurrentYValues,
00083 std::vector<double>& rNextYValues);
00084
00085 public:
00086
00090 EulerIvpOdeSolver()
00091 {}
00092
00096 virtual ~EulerIvpOdeSolver()
00097 {}
00098 };
00099
00100 BOOST_CLASS_EXPORT(EulerIvpOdeSolver);
00101
00102 #endif //_EULERIVPODESOLVER_HPP_
00103