template<class TypeTag, class Assembler, class Implementation>
class Dumux::Experimental::CVFELocalAssemblerBase< TypeTag, Assembler, Implementation >
- Template Parameters
-
| TypeTag | The TypeTag |
| Assembler | The assembler type |
| Implementation | The actual implementation |
|
| void | bindLocalViews () |
| |
| template<class ResidualVector, class StageParams, class PartialReassembler = DefaultPartialReassembler, class CouplingFunction = Noop> |
| void | assembleJacobianAndResidual (JacobianMatrix &jac, ResidualVector &res, GridVariables &gridVariables, const StageParams &stageParams, ResidualVector &temporal, ResidualVector &spatial, ResidualVector &constrainedDofs, const PartialReassembler *partialReassembler=nullptr, const CouplingFunction &maybeAssembleCouplingBlocks=noop) |
| | Computes the derivatives with respect to the given element and adds them to the global matrix. The element residual is written into the right hand side.
|
| |
| void | assembleJacobian (JacobianMatrix &jac, GridVariables &gridVariables) |
| | Computes the derivatives with respect to the given element and adds them to the global matrix.
|
| |
| template<class ResidualVector> |
| void | assembleResidual (ResidualVector &res) |
| | Assemble the residual only.
|
| |
| template<class ResidualVector> |
| void | assembleCurrentResidual (ResidualVector &spatialRes, ResidualVector &temporalRes) |
| | Assemble the residual only.
|
| |
| template<typename ApplyFunction> |
| void | enforceDirichletConstraints (const ApplyFunction &applyDirichlet) |
| | Enforce Dirichlet constraints.
|
| |
| template<typename ApplyDirichletFunctionType> |
| void | evalDirichletBoundaries (ApplyDirichletFunctionType applyDirichlet) |
| | Evaluates Dirichlet boundaries.
|
| |
| template<class... Args> |
| void | maybeUpdateCouplingContext (Args &&...) |
| | Update the coupling context for coupled models.
|
| |
| template<class... Args> |
| void | maybeEvalAdditionalDomainDerivatives (Args &&...) |
| | Update the additional domain derivatives for coupled models.
|
| |
| ElementResidualVector | evalLocalResidual () const |
| | Convenience function to evaluate the complete local residual for the current element. Automatically chooses the the appropriate element volume variables.
|
| |
| ElementResidualVector | evalLocalResidual (const ElementVolumeVariables &elemVolVars) const |
| | Evaluates the complete local residual for the current element.
|
| |
| ElementResidualVector | evalLocalFluxAndSourceResidual () const |
| | Convenience function to evaluate the flux and source terms (i.e, the terms without a time derivative) of the local residual for the current element. Automatically chooses the the appropriate element volume variables.
|
| |
| ElementResidualVector | evalLocalFluxAndSourceResidual (const ElementVolumeVariables &elemVolVars) const |
| | Evaluates the flux and source terms (i.e, the terms without a time derivative) of the local residual for the current element.
|
| |
| ElementResidualVector | evalStorage () const |
| | Convenience function to evaluate storage term (i.e, the term with a time derivative) of the local residual for the current element. Automatically chooses the the appropriate element volume variables.
|
| |
| template<typename ApplyFunction, class P = Problem, typename std::enable_if_t< P::enableInternalDirichletConstraints(), int > = 0> |
| void | enforceInternalDirichletConstraints (const ApplyFunction &applyDirichlet) |
| | Enforces Dirichlet constraints if enabled in the problem.
|
| |
| template<typename ApplyFunction, class P = Problem, typename std::enable_if_t<!P::enableInternalDirichletConstraints(), int > = 0> |
| void | enforceInternalDirichletConstraints (const ApplyFunction &applyDirichlet) |
| |
| const Problem & | problem () const |
| | The problem.
|
| |
| const Assembler & | assembler () const |
| | The assembler.
|
| |
| const Element & | element () const |
| | The current element.
|
| |
| bool | elementIsGhost () const |
| | Returns if element is a ghost entity.
|
| |
| const SolutionVector & | curSol () const |
| | The current solution.
|
| |
| FVElementGeometry & | fvGeometry () |
| | The global finite volume geometry.
|
| |
| const FVElementGeometry & | fvGeometry () const |
| | The finite volume geometry.
|
| |
| ElementVolumeVariables & | curElemVolVars () |
| | The current element volume variables.
|
| |
| const ElementVolumeVariables & | curElemVolVars () const |
| | The current element volume variables.
|
| |
| ElementFluxVariablesCache & | elemFluxVarsCache () |
| | The element flux variables cache.
|
| |
| const ElementFluxVariablesCache & | elemFluxVarsCache () const |
| | The element flux variables cache.
|
| |
| LocalResidual & | localResidual () |
| | The local residual for the current element.
|
| |
| const LocalResidual & | localResidual () const |
| | The local residual for the current element.
|
| |
| ElementBoundaryTypes & | elemBcTypes () |
| | The element's boundary types.
|
| |
| const ElementBoundaryTypes & | elemBcTypes () const |
| | The element's boundary types.
|
| |
| bool | isImplicit () const |
| | If the time stepping scheme is implicit.
|
| |