Time stepping with one step methods.
More...
|
| class | Dune::PDELab::ExplicitEulerParameter< R > |
| | Parameters to turn the ExplicitOneStepMethod into an explicite Euler method. More...
|
| |
| class | Dune::PDELab::OneStepThetaParameter< R > |
| | Parameters to turn the OneStepMethod into an one step theta method. More...
|
| |
| class | Dune::PDELab::HeunParameter< R > |
| | Parameters to turn the ExplicitOneStepMethod into a Heun scheme. More...
|
| |
| class | Dune::PDELab::Shu3Parameter< R > |
| | Parameters to turn the ExplicitOneStepMethod into a third order strong stability preserving (SSP) scheme. More...
|
| |
| class | Dune::PDELab::RK4Parameter< R > |
| | Parameters to turn the ExplicitOneStepMethod into a classical fourth order Runge-Kutta method. More...
|
| |
| class | Dune::PDELab::Alexander2Parameter< R > |
| | Parameters to turn the OneStepMethod into an Alexander scheme. More...
|
| |
| class | Dune::PDELab::FractionalStepParameter< R > |
| | Parameters to turn the OneStepMethod into a fractional step theta scheme. More...
|
| |
| class | Dune::PDELab::Alexander3Parameter< R > |
| | Parameters to turn the OneStepMethod into an Alexander3 scheme. More...
|
| |
| class | Dune::PDELab::TimeControllerInterface< R > |
| | Controller interface for adaptive time stepping. More...
|
| |
| class | Dune::PDELab::SimpleTimeController< R > |
| | Default time controller; just returns given dt. More...
|
| |
| class | Dune::PDELab::CFLTimeController< R, IGOS > |
| | limit time step to maximum dt * CFL number More...
|
| |
| struct | Dune::PDELab::OneStepMethodPartialResult |
| |
| struct | Dune::PDELab::OneStepMethodResult |
| |
| class | Dune::PDELab::OneStepMethod< T, IGOS, PDESOLVER, TrlV, TstV > |
| | Do one step of a time-stepping scheme. More...
|
| |
| class | Dune::PDELab::ExplicitOneStepMethod< T, IGOS, LS, TrlV, TstV, TC > |
| | Do one step of an explicit time-stepping scheme. More...
|
| |
| class | Dune::PDELab::FilenameHelper |
| |
Time stepping with one step methods.
Use the class OneStepMethod to create a one step method. the actual method is chosen by providing the constructor with the correct parameter class, e.g. ExplicitEulerParameter.