#include <EulerIvpOdeSolver.hpp>
Public Member Functions | |
EulerIvpOdeSolver () | |
virtual | ~EulerIvpOdeSolver () |
Protected Member Functions | |
void | CalculateNextYValue (AbstractOdeSystem *pAbstractOdeSystem, double timeStep, double time, std::vector< double > &rCurrentYValues, std::vector< double > &rNextYValues) |
Private Member Functions | |
template<class Archive> | |
void | serialize (Archive &archive, const unsigned int version) |
Friends | |
class | boost::serialization::access |
Definition at line 42 of file EulerIvpOdeSolver.hpp.
EulerIvpOdeSolver::EulerIvpOdeSolver | ( | ) | [inline] |
Constructor.
Definition at line 87 of file EulerIvpOdeSolver.hpp.
virtual EulerIvpOdeSolver::~EulerIvpOdeSolver | ( | ) | [inline, virtual] |
Destructor.
Definition at line 93 of file EulerIvpOdeSolver.hpp.
void EulerIvpOdeSolver::serialize | ( | Archive & | archive, | |
const unsigned int | version | |||
) | [inline, private] |
Archive the abstract IVP Solver, never used directly - boost uses this.
archive | the archive | |
version | the current version of this class |
Reimplemented from AbstractOneStepIvpOdeSolver.
Reimplemented in MockEulerIvpOdeSolver.
Definition at line 55 of file EulerIvpOdeSolver.hpp.
void EulerIvpOdeSolver::CalculateNextYValue | ( | AbstractOdeSystem * | pAbstractOdeSystem, | |
double | timeStep, | |||
double | time, | |||
std::vector< double > & | rCurrentYValues, | |||
std::vector< double > & | rNextYValues | |||
) | [protected, virtual] |
Calculate the solution to the ODE system at the next timestep.
A usage example: EulerIvpOdeSolver mySolver; OdeSolution solution = mySolver.Solve(pMyOdeSystem, yInit, StartTime, EndTime, TimeStep, SamplingTime);
pAbstractOdeSystem | the ODE system to solve | |
timeStep | dt | |
time | the current time | |
rCurrentYValues | the current (initial) state | |
rNextYValues | the state at the next timestep |
Implements AbstractOneStepIvpOdeSolver.
Definition at line 31 of file EulerIvpOdeSolver.cpp.
References AbstractOdeSystem::EvaluateYDerivatives(), and AbstractParameterisedSystem< VECTOR >::GetNumberOfStateVariables().
friend class boost::serialization::access [friend] |
Needed for serialization.
Reimplemented from AbstractOneStepIvpOdeSolver.
Reimplemented in MockEulerIvpOdeSolver.
Definition at line 47 of file EulerIvpOdeSolver.hpp.