#include <explicit_timesteppers.h>
Public Member Functions | |
Euler () | |
Constructor, set the type. More... | |
Euler (const Euler &) | |
Broken copy constructor. More... | |
void | operator= (const Euler &) |
Broken assignment operator. More... | |
void | timestep (ExplicitTimeSteppableObject *const &object_pt, const double &dt) |
Overload function that is used to advance time in the object reference by object_pt by an amount dt. More... | |
![]() | |
ExplicitTimeStepper () | |
Empty Constructor. More... | |
ExplicitTimeStepper (const ExplicitTimeStepper &) | |
Broken copy constructor. More... | |
void | operator= (const ExplicitTimeStepper &) |
Broken assignment operator. More... | |
virtual | ~ExplicitTimeStepper () |
Empty virtual destructor — no memory is allocated in this class. More... | |
Additional Inherited Members | |
![]() | |
std::string | Type |
String that indicates the type of the timestepper (e.g. "RungeKutta", etc.) More... | |
=========================================================== Simple first-order Euler Timestepping
Definition at line 181 of file explicit_timesteppers.h.
|
inline |
Constructor, set the type.
Definition at line 186 of file explicit_timesteppers.h.
|
inline |
Broken copy constructor.
Definition at line 189 of file explicit_timesteppers.h.
References oomph::BrokenCopy::broken_copy().
|
inline |
Broken assignment operator.
Definition at line 195 of file explicit_timesteppers.h.
References oomph::BrokenCopy::broken_assign().
|
virtual |
Overload function that is used to advance time in the object reference by object_pt by an amount dt.
Euler timestepping x^{t+1} = x^{t} + dt M^{-1} L(x^{t})
Implements oomph::ExplicitTimeStepper.
Definition at line 180 of file explicit_timesteppers.cc.
References oomph::ExplicitTimeSteppableObject::actions_after_explicit_stage(), oomph::ExplicitTimeSteppableObject::actions_after_explicit_timestep(), oomph::ExplicitTimeSteppableObject::actions_before_explicit_stage(), oomph::ExplicitTimeSteppableObject::actions_before_explicit_timestep(), oomph::ExplicitTimeSteppableObject::add_to_dofs(), oomph::ExplicitTimeSteppableObject::get_dvaluesdt(), and oomph::ExplicitTimeSteppableObject::time().