=========================================================== Runge Kutta Timestepping that uses low storage More...
#include <explicit_timesteppers.h>
Public Member Functions | |
LowStorageRungeKutta () | |
Constructor, set the type. More... | |
LowStorageRungeKutta (const LowStorageRungeKutta &)=delete | |
Broken copy constructor. More... | |
void | operator= (const LowStorageRungeKutta &)=delete |
Broken assignment operator. More... | |
void | timestep (ExplicitTimeSteppableObject *const &object_pt, const double &dt) |
Function that is used to advance the solution by time dt. More... | |
LowStorageRungeKutta () | |
void | timestep (ExplicitTimeSteppableObject *const &object_pt, const double &dt) |
Pure virtual function that is used to advance time in the object. 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... | |
Private Attributes | |
Vector< double > | A |
Vector< double > | B |
Vector< double > | C |
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... | |
=========================================================== Runge Kutta Timestepping that uses low storage
Definition at line 212 of file explicit_timesteppers.h.
oomph::LowStorageRungeKutta< ORDER >::LowStorageRungeKutta |
Constructor, set the type.
Definition at line 327 of file explicit_timesteppers.cc.
|
delete |
Broken copy constructor.
Definition at line 349 of file explicit_timesteppers.cc.
References oomph::OcTreeNames::B.
|
delete |
Broken assignment operator.
|
virtual |
Pure virtual function that is used to advance time in the object.
Implements oomph::ExplicitTimeStepper.
Definition at line 378 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::OcTreeNames::B, oomph::DoubleVector::build(), oomph::DistributableLinearAlgebraObject::distribution_pt(), oomph::ExplicitTimeSteppableObject::get_dvaluesdt(), i, oomph::DistributableLinearAlgebraObject::nrow(), and oomph::ExplicitTimeSteppableObject::time().
|
virtual |
Function that is used to advance the solution by time dt.
Broken default timestep for LowStorageRungeKutta.
Implements oomph::ExplicitTimeStepper.
Definition at line 336 of file explicit_timesteppers.cc.
|
private |
Definition at line 215 of file explicit_timesteppers.h.
|
private |
Definition at line 215 of file explicit_timesteppers.h.
|
private |
Definition at line 215 of file explicit_timesteppers.h.