|
dune-fem 2.12-git
|
interface for time evolution operators More...
#include <dune/fem/operator/common/spaceoperatorif.hh>

Public Types | |
| typedef DiscreteFunction | DestinationType |
| type of argument and destination | |
| typedef DestinationType::DiscreteFunctionSpaceType | DiscreteFunctionSpaceType |
| type of discrete function space | |
| typedef DiscreteFunctionSpaceType | SpaceType |
| convenience typedef for space type | |
| typedef BaseType::RangeFunctionType | RangeFunctionType |
| typedef BaseType::DomainFunctionType | DomainFunctionType |
| typedef BaseType::RangeFieldType | RangeFieldType |
| typedef BaseType::DomainFieldType | DomainFieldType |
| typedef Dune::FieldTraits< RangeFieldType >::real_type | RealType |
| typedef BaseType::JacobianOperatorType | JacobianOperatorType |
| typedef RangeFunctionType::DiscreteFunctionSpaceType | RangeSpaceType |
| typedef DomainFunctionType::DiscreteFunctionSpaceType | DomainSpaceType |
Public Member Functions | |
| virtual | ~SpaceOperatorInterface () |
| destructor | |
| virtual const DiscreteFunctionSpaceType & | space () const =0 |
| return reference to space (needed by ode solvers) | |
| virtual int | size () const |
| return size of discrete function space, i.e. number of unknowns | |
| virtual void | initializeTimeStepSize (const DestinationType &U0) const |
| call operator once to calculate initial time step size | |
| virtual bool | hasLimiter () const |
| return true if limit method is implemented | |
| virtual void | setTime (const double time) |
| set time for operators | |
| virtual double | timeStepEstimate () const |
| estimate maximum time step | |
| virtual void | limit (const DestinationType &arg, DestinationType &dest) const |
| limiter application operator | |
| virtual void | applyLimiter (DestinationType &U) const |
| limiter application operator | |
| virtual const DestinationType * | destination () const |
| return reference to pass's local memory | |
| virtual void | jacobian (const DomainFunctionType &u, JacobianOperatorType &jOp) const |
| virtual void | jacobian (const DomainFunctionType &u, JacobianOperatorType &jOp) const =0 |
| obtain linearization | |
| virtual void | operator() (const DomainFunctionType &u, RangeFunctionType &w) const=0 |
| application operator | |
| virtual void | finalize () |
| finalization of operator | |
| virtual bool | nonlinear () const |
Protected Attributes | |
| std::unique_ptr< DestinationType > | uTmp_ |
Detailed Description
class Dune::Fem::SpaceOperatorInterface< DiscreteFunction, JacobianOperator >
interface for time evolution operators
The SpaceOperatorInterface defines an interface for operators \(L: X \longrightarrow X\) from a discrete function space \(X\) into itself. This interface is used to implement operators working with the ODE solvers.
- Template Parameters
-
DiscreteFunction type of discretefunction modelling the elements of \(X\).
Member Typedef Documentation
◆ DestinationType
| typedef DiscreteFunction Dune::Fem::SpaceOperatorInterface< DiscreteFunction, JacobianOperator >::DestinationType |
type of argument and destination
◆ DiscreteFunctionSpaceType
| typedef DestinationType::DiscreteFunctionSpaceType Dune::Fem::SpaceOperatorInterface< DiscreteFunction, JacobianOperator >::DiscreteFunctionSpaceType |
type of discrete function space
◆ DomainFieldType
|
inherited |
◆ DomainFunctionType
|
inherited |
◆ DomainSpaceType
|
inherited |
◆ JacobianOperatorType
|
inherited |
◆ RangeFieldType
|
inherited |
◆ RangeFunctionType
|
inherited |
◆ RangeSpaceType
|
inherited |
◆ RealType
|
inherited |
◆ SpaceType
| typedef DiscreteFunctionSpaceType Dune::Fem::SpaceOperatorInterface< DiscreteFunction, JacobianOperator >::SpaceType |
convenience typedef for space type
Constructor & Destructor Documentation
◆ ~SpaceOperatorInterface()
|
inlinevirtual |
destructor
Member Function Documentation
◆ applyLimiter()
|
inlinevirtual |
limiter application operator
- Parameters
-
[in,out] U argument and destination to apply Limiter(u), needs internal copying
- Note
- : Default implementation is to do nothing (hasLimiter == false)
◆ destination()
|
inlinevirtual |
return reference to pass's local memory
Reimplemented in Dune::Fem::SpaceOperatorPtr< OperatorType >.
◆ finalize()
|
inlinevirtualinherited |
finalization of operator
- Note
- The default implementation is empty.
◆ hasLimiter()
|
inlinevirtual |
return true if limit method is implemented
- Returns
- true if limit is implemented
◆ initializeTimeStepSize()
|
inlinevirtual |
call operator once to calculate initial time step size
- Parameters
-
U0 initial data to compute initial time step size
◆ jacobian() [1/2]
|
inlinevirtualinherited |
◆ jacobian() [2/2]
|
pure virtualinherited |
obtain linearization
- Parameters
-
[in] u argument discrete function [out] jOp destination Jacobian operator
- Note
- This method has to be implemented by all derived classes.
Implemented in Dune::Fem::DifferentiableGalerkinOperator< Integrands, JacobianOperator >, Dune::Fem::MassLumpingDifferentiableOperator< Integrands, MassIntegrands, JacobianOperator >, and Dune::Fem::MOLDifferentiableGalerkinOperator< Integrands, JacobianOperator >.
◆ limit()
|
inlinevirtual |
limiter application operator
- Parameters
-
arg argument, u dest destination, Limiter(u)
- Note
- : Default implementation is to copy arg into dest.
◆ nonlinear()
|
inlinevirtualinherited |
Return true if the Operator is nonlinear and false otherwise (default is true).
Reimplemented in DirichletWrapperOperator< Operator, Constraints >, Dune::Fem::DifferentiableGalerkinOperator< Integrands, JacobianOperator >, and Dune::Fem::DifferentiableGalerkinOperator< ModelIntegrands, LinearOperator >.
◆ operator()()
|
pure virtualinherited |
application operator
- Parameters
-
[in] u argument discrete function [out] w destination discrete function
- Note
- This method has to be implemented by all derived classes.
◆ setTime()
|
inlinevirtual |
set time for operators
- Parameters
-
time current time of evaluation
Reimplemented in Dune::Fem::SpaceOperatorPtr< OperatorType >, and Dune::Fem::HdivProjection< DiscreteFunctionType >.
◆ size()
|
inlinevirtual |
return size of discrete function space, i.e. number of unknowns
◆ space()
|
pure virtual |
return reference to space (needed by ode solvers)
Implemented in Dune::Fem::SpaceOperatorPtr< OperatorType >, and Dune::Fem::HdivProjection< DiscreteFunctionType >.
◆ timeStepEstimate()
|
inlinevirtual |
estimate maximum time step
For an explicit time discretization, the time step has to be limited. An estimate for the maximum time step of an explicit Euler scheme is returned by this function. Maximum time steps for higher order Runge Kutta schemes can be derived from this value.
Reimplemented in Dune::Fem::SpaceOperatorPtr< OperatorType >, and Dune::Fem::HdivProjection< DiscreteFunctionType >.
Member Data Documentation
◆ uTmp_
|
mutableprotected |
The documentation for this class was generated from the following file:
Legal Statements / Impressum | Hosted by TU Dresden & Uni Heidelberg | Generated by
1.9.8