dune-fem
2.8-git
|
Interface class for ODE Solver. More...
#include <dune/fem/solver/odesolverinterface.hh>
Classes | |
struct | Monitor |
Public Types | |
typedef Monitor | MonitorType |
monitor type More... | |
typedef DestinationImp | DestinationType |
type of destination More... | |
Public Member Functions | |
virtual | ~OdeSolverInterface () |
destructor More... | |
virtual void | initialize (const DestinationType &arg)=0 |
initialize solver More... | |
virtual void | solve (DestinationType &u) |
solve ![]() ![]() | |
virtual void | solve (DestinationType &u, MonitorType &monitor)=0 |
solve ![]() ![]() | |
virtual void | description (std::ostream &) const =0 |
print description of ODE solver to out stream More... | |
Protected Member Functions | |
OdeSolverInterface () | |
constructor More... | |
Interface class for ODE Solver.
typedef DestinationImp DuneODE::OdeSolverInterface< DestinationImp >::DestinationType |
type of destination
typedef Monitor DuneODE::OdeSolverInterface< DestinationImp >::MonitorType |
monitor type
|
inlineprotected |
constructor
|
inlinevirtual |
destructor
|
pure virtual |
print description of ODE solver to out stream
Implemented in DuneODE::ExplicitRungeKuttaSolver< DestinationImp >, DuneODE::BasicROWRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, TimeStepControl, SourceTerm >, DuneODE::BasicROWRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl >, DuneODE::BasicImplicitRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, TimeStepControl, SourceTerm >, DuneODE::BasicImplicitRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl >, and DuneODE::BasicImplicitRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl, SemiImplicitRungeKuttaSourceTerm< ExplicitOperator > >.
|
pure virtual |
initialize solver
[in] | arg | argument to apply internal operator once for intial time step estimate |
Implemented in DuneODE::ExplicitRungeKuttaSolver< DestinationImp >, DuneODE::BasicROWRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl >, DuneODE::BasicImplicitRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl >, DuneODE::BasicImplicitRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl, SemiImplicitRungeKuttaSourceTerm< ExplicitOperator > >, and DuneODE::ExplicitMultiStepSolver< DestinationImp >.
|
inlinevirtual |
solve where
is the internal operator.
[in] | u | unknown to solve for |
Reimplemented in DuneODE::ExplicitMultiStepSolver< DestinationImp >.
|
pure virtual |
solve where
is the internal operator.
[in] | u | unknown to solve for |
[in] | monitor | Monitor to get some inside information |
Implemented in DuneODE::ExplicitRungeKuttaSolver< DestinationImp >, DuneODE::BasicROWRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl >, DuneODE::BasicImplicitRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl >, and DuneODE::BasicImplicitRungeKuttaSolver< HelmholtzOperator, NonlinearSolver, ImplicitRungeKuttaTimeStepControl, SemiImplicitRungeKuttaSourceTerm< ExplicitOperator > >.