DUNE PDELab (git)
#include <dune/pdelab/localoperator/convectiondiffusionfem.hh>
Public Member Functions | |
ConvectionDiffusionTemporalResidualEstimator1 (T ¶m_, double time_, double dt_) | |
constructor: pass parameter object | |
void | setTime (double t_) |
set time for subsequent evaluation More... | |
double | getTime () const |
get current time More... | |
void | preStep (RealType time, RealType dt, int stages) |
to be called once before each time step More... | |
void | postStep () |
to be called once at the end of each time step More... | |
void | preStage (RealType time, int r) |
to be called once before each stage More... | |
int | getStage () const |
get current stage More... | |
void | postStage () |
to be called once at the end of each stage | |
RealType | suggestTimestep (RealType dt) const |
to be called after stage 1 More... | |
Detailed Description
class Dune::PDELab::ConvectionDiffusionTemporalResidualEstimator1< T >
a local operator for evaluating the temporal part of error estimator
A call to residual() of a grid operator space will assemble the quantity \(\eta_T^2\) for each cell. Note that the squares of the cell indicator \(\eta_T\) is stored. To compute the global error estimate sum up all values and take the square root.
Assumptions and limitations:
- Assumes that LFSU is \(P_k\)/ \(Q_k\) finite element space and LFSV is a \(P_0\) finite element space (one value per cell).
- Assumes that x is the jump from one time interval to the next, i.e. x=xnew-xold.
- Data oscillation part is currently not yet implemented
- Template Parameters
-
T model of ConvectionDiffusionParameterInterface
Member Function Documentation
◆ getStage()
|
inlineinherited |
get current stage
- Returns
- The current stage number previously set by preStage().
◆ getTime()
|
inlineinherited |
get current time
- Returns
- The time previously set by setTime().
◆ postStep()
|
inlineinherited |
to be called once at the end of each time step
- Note
- With the OneStepMethod and the ExplicitOneStepMetod, for reasons unknown this is only called for temporal but not for spatial local operators. With the MultiStepMethod this is called for all local operators.
◆ preStage()
|
inlineinherited |
to be called once before each stage
- Parameters
-
time Time of the stage r Number of the stage, r ∈ [1, nstages] inclusive, where nstages is the number of stage in the step given in the previous call to preStep()
- Note
- For ExplicitOneStepMethod the time given here for stage 1 may be incorrect, since the time step size is only finally determined after the first stage has been assembled.
- For the MultiStepMethod, this is called once after preStep() with r=1.
◆ preStep()
|
inlineinherited |
to be called once before each time step
- Parameters
-
time Time at beginning of the step. dt Size of time step. stages Number of stages to do in the step. For the MultiStepMethod this is always 1.
- Note
- For ExplicitOneStepMethod the dt given here may be incorrect, since the time step size is only finally determined after the first stage has been assembled.
-
For the MultiStepMethod the number of stages is given as
- Since there are no times of evaluation in the middle of the step, a multi-step method is similar to a one step method with one stage.
◆ setTime()
|
inlineinherited |
set time for subsequent evaluation
This method set the time for subsequent calls to the alpha_*(), lambda_*(), jacobian_*() and jacobian_apply_*() methods.
- Note
- For ExplicitOneStepMethod the time given here in the first stage may be incorrect, since the time step size is only finally determined after the first stage has been assembled.
◆ suggestTimestep()
|
inlineinherited |
to be called after stage 1
- Note
- Only used by the ExplicitOneStepMethod.
This may be called on the spatial local operator in the case of an explicit one step scheme. It is called after stage 1 has been assembled (so the time given to preStep() may not apply anymore in this case). All the alpha_*() and lambda_*() methods should have been called, so they are a good place to generate the information returned here.
The documentation for this class was generated from the following file:
- dune/pdelab/localoperator/convectiondiffusionfem.hh