TimeStepper Class Reference

#include <TimeStepper.hpp>

Collaboration diagram for TimeStepper:
Collaboration graph
[legend]

List of all members.

Public Member Functions

 TimeStepper (double startTime, double endTime, double dt, bool enforceConstantTimeStep=false, std::vector< double > additionalTimes=std::vector< double >())
void AdvanceOneTimeStep ()
double GetTime () const
double GetNextTime () const
double GetNextTimeStep ()
bool IsTimeAtEnd () const
unsigned EstimateTimeSteps () const
unsigned GetTotalTimeStepsTaken () const

Private Member Functions

double CalculateNextTime ()

Private Attributes

double mStart
double mEnd
double mDt
unsigned mTotalTimeStepsTaken
unsigned mAdditionalTimesReached
double mTime
double mNextTime
std::vector< doublemAdditionalTimes

Friends

class TestTimeStepper

Detailed Description

A helper class that provides a robust way to deal with time loops.

An incremented integer counter is used to calculate the current time and ensure that the correct end time.

Definition at line 41 of file TimeStepper.hpp.


Constructor & Destructor Documentation

TimeStepper::TimeStepper ( double  startTime,
double  endTime,
double  dt,
bool  enforceConstantTimeStep = false,
std::vector< double additionalTimes = std::vector<double> () 
)

Create a new time stepper over some simulation interval. Time units are not specified, but all parameters should have consistent units.

Parameters:
startTime the start of the interval
endTime the end of the interval
dt the time step to use.
enforceConstantTimeStep If this is true the stepper estimates whether non-constant timesteps will be used and quits if so.
additionalTimes If the timestepper needs to stop at certain additional times, that aren't (necessarily) multiples of dt, they can be passed in in this std::vector. Defaults to empty. These times must be in ascending order.

Definition at line 38 of file TimeStepper.cpp.

References CalculateNextTime(), EstimateTimeSteps(), mAdditionalTimes, mDt, mEnd, mNextTime, and mStart.


Member Function Documentation

void TimeStepper::AdvanceOneTimeStep (  ) 
double TimeStepper::CalculateNextTime (  )  [private]

Compute what the time will be after the next time step.

Definition at line 81 of file TimeStepper.cpp.

References mAdditionalTimes, mAdditionalTimesReached, mDt, mEnd, mStart, and mTotalTimeStepsTaken.

Referenced by AdvanceOneTimeStep(), and TimeStepper().

unsigned TimeStepper::EstimateTimeSteps (  )  const

Estimate number of time steps, which may be an overestimate Used to reserve memory for writing intermediate solutions.

Definition at line 147 of file TimeStepper.cpp.

References mAdditionalTimes, mDt, mEnd, and mStart.

Referenced by AbstractOneStepIvpOdeSolver::Solve(), and TimeStepper().

double TimeStepper::GetNextTime (  )  const
double TimeStepper::GetNextTimeStep (  ) 
double TimeStepper::GetTime (  )  const
unsigned TimeStepper::GetTotalTimeStepsTaken (  )  const

The number of time AdvanceOneTimeStep() has been called.

Definition at line 152 of file TimeStepper.cpp.

References mTotalTimeStepsTaken.

Referenced by AbstractOneStepIvpOdeSolver::Solve().

bool TimeStepper::IsTimeAtEnd (  )  const

Member Data Documentation

std::vector<double> TimeStepper::mAdditionalTimes [private]

Vector to store the additional times the stepper must stop at.

Definition at line 124 of file TimeStepper.hpp.

Referenced by CalculateNextTime(), EstimateTimeSteps(), GetNextTimeStep(), and TimeStepper().

The number of times one of the 'additional times' has been passed.

Definition at line 112 of file TimeStepper.hpp.

Referenced by CalculateNextTime(), and GetNextTimeStep().

The size of time step.

Definition at line 106 of file TimeStepper.hpp.

Referenced by CalculateNextTime(), EstimateTimeSteps(), GetNextTimeStep(), and TimeStepper().

The end time.

Definition at line 103 of file TimeStepper.hpp.

Referenced by CalculateNextTime(), EstimateTimeSteps(), GetNextTimeStep(), IsTimeAtEnd(), and TimeStepper().

What the time will be after the next time step.

Definition at line 118 of file TimeStepper.hpp.

Referenced by AdvanceOneTimeStep(), GetNextTime(), GetNextTimeStep(), and TimeStepper().

The start time.

Definition at line 100 of file TimeStepper.hpp.

Referenced by CalculateNextTime(), EstimateTimeSteps(), and TimeStepper().

The current time.

Definition at line 115 of file TimeStepper.hpp.

Referenced by AdvanceOneTimeStep(), GetNextTimeStep(), GetTime(), and IsTimeAtEnd().

The total number of time steps taken, including those to get one of the 'additional times'.

Definition at line 109 of file TimeStepper.hpp.

Referenced by AdvanceOneTimeStep(), CalculateNextTime(), and GetTotalTimeStepsTaken().


The documentation for this class was generated from the following files:

Generated by  doxygen 1.6.2