|
typedef GO0::Pattern | Pattern |
| The sparsity pattern container for the jacobian matrix. More...
|
|
typedef GO0::Traits::Assembler | Assembler |
| The global UDG assembler type. More...
|
|
typedef OneStepLocalAssembler< OneStepGridOperator, LocalAssemblerDT0, LocalAssemblerDT1 > | LocalAssembler |
| The local assembler type. More...
|
|
typedef GO0::BorderDOFExchanger | BorderDOFExchanger |
| The BorderDOFExchanger. More...
|
|
typedef Dune::PDELab::GridOperatorTraits< typename GO0::Traits::TrialGridFunctionSpace, typename GO0::Traits::TestGridFunctionSpace, typename GO0::Traits::MatrixBackend, typename GO0::Traits::DomainField, typename GO0::Traits::RangeField, typename GO0::Traits::JacobianField, typename GO0::Traits::TrialGridFunctionSpaceConstraints, typename GO0::Traits::TestGridFunctionSpaceConstraints, Assembler, LocalAssembler > | Traits |
| The grid operator traits. More...
|
|
typedef LocalAssembler::Real | Real |
| The type for real number e.g. time. More...
|
|
typedef LocalAssembler::OneStepParameters | OneStepParameters |
| The type of the one step method parameters. More...
|
|
|
typedef GO0::Traits::LocalAssembler | LocalAssemblerDT0 |
|
typedef GO1::Traits::LocalAssembler | LocalAssemblerDT1 |
|
|
typedef Traits::Domain | Domain |
|
typedef Traits::Range | Range |
|
typedef Traits::Jacobian | Jacobian |
|
|
| OneStepGridOperator (GO0 &go0_, GO1 &go1_) |
| Constructor for non trivial constraints. More...
|
|
void | divideMassTermByDeltaT () |
|
void | multiplySpatialTermByDeltaT () |
|
const Traits::TrialGridFunctionSpace & | trialGridFunctionSpace () const |
| Get the trial grid function space. More...
|
|
const Traits::TestGridFunctionSpace & | testGridFunctionSpace () const |
| Get the test grid function space. More...
|
|
Traits::TrialGridFunctionSpace::Traits::SizeType | globalSizeU () const |
| Get dimension of space u. More...
|
|
Traits::TestGridFunctionSpace::Traits::SizeType | globalSizeV () const |
| Get dimension of space v. More...
|
|
Assembler & | assembler () const |
|
LocalAssembler & | localAssembler () const |
|
void | fill_pattern (Pattern &p) const |
| Fill pattern of jacobian matrix. More...
|
|
void | preStage (unsigned int stage, const std::vector< Domain * > &x) |
| Assemble constant part of residual. More...
|
|
void | residual (const Domain &x, Range &r) const |
| Assemble residual. More...
|
|
void | jacobian (const Domain &x, Jacobian &a) const |
| Assemble jacobian. More...
|
|
void | explicit_jacobian_residual (unsigned int stage, const std::vector< Domain * > &x, Jacobian &a, Range &r1, Range &r0) |
| Assemble jacobian and residual simultaneously for explicit treatment. More...
|
|
void | jacobian_apply (const Domain &update, Range &result) const |
| Apply jacobian matrix to the vector update without explicitly assembling it. More...
|
|
void | jacobian_apply (const Domain &solution, const Domain &update, Range &result) const |
| Apply jacobian matrix to the vector update without explicitly assembling it. More...
|
|
template<typename F , typename X > |
void | interpolate (unsigned stage, const X &xold, F &f, X &x) const |
| Interpolate constrained values from given function f. More...
|
|
void | setMethod (const TimeSteppingParameterInterface< Real > &method_) |
| set time stepping method More...
|
|
void | preStep (const TimeSteppingParameterInterface< Real > &method_, Real time_, Real dt_) |
| parametrize assembler with a time-stepping method More...
|
|
void | postStep () |
| to be called after step is completed More...
|
|
void | postStage () |
| to be called after stage is completed More...
|
|
Real | suggestTimestep (Real dt) const |
| to be called once before each stage More...
|
|
void | update () |
|
void | make_consistent (Jacobian &a) const |
|
const Traits::MatrixBackend & | matrixBackend () const |
|
const LocalAssembler::Traits::TrialGridFunctionSpaceConstraints | trialConstraints () const |
|
template<typename GO0, typename GO1, bool implicit = true>
class Dune::PDELab::OneStepGridOperator< GO0, GO1, implicit >
- Examples
- recipe-operator-splitting.cc.