=========================================================== Simple first-order Euler Timestepping More...
#include <explicit_timesteppers.h>
Public Member Functions | |
Euler () | |
Constructor, set the type. More... | |
Euler (const Euler &)=delete | |
Broken copy constructor. More... | |
void | operator= (const Euler &)=delete |
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... | |
Public Member Functions inherited from oomph::ExplicitTimeStepper | |
ExplicitTimeStepper () | |
Empty Constructor. More... | |
ExplicitTimeStepper (const ExplicitTimeStepper &)=delete | |
Broken copy constructor. More... | |
void | operator= (const ExplicitTimeStepper &)=delete |
Broken assignment operator. More... | |
virtual | ~ExplicitTimeStepper () |
Empty virtual destructor — no memory is allocated in this class. More... | |
Additional Inherited Members | |
Protected Attributes inherited from oomph::ExplicitTimeStepper | |
std::string | Type |
String that indicates the type of the timestepper (e.g. "RungeKutta", etc.) More... | |
=========================================================== Simple first-order Euler Timestepping
Definition at line 161 of file explicit_timesteppers.h.
|
inline |
Constructor, set the type.
Definition at line 165 of file explicit_timesteppers.h.
References oomph::ExplicitTimeStepper::Type.
|
delete |
Broken copy constructor.
|
delete |
Broken assignment operator.
|
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 163 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().