Box scheme multi domain local assembler using numeric differentiation and explicit time discretization.
More...
template<std::size_t id, class TypeTag, class Assembler>
class Dumux::SubDomainBoxLocalAssembler< id, TypeTag, Assembler, DiffMethod::numeric, false >
Box scheme multi domain local assembler using numeric differentiation and explicit time discretization.
|
| template<class JacobianMatrixDiagBlock , class GridVariables > |
| ElementResidualVector | assembleJacobianAndResidualImpl (JacobianMatrixDiagBlock &A, GridVariables &gridVariables) |
| | Computes the derivatives with respect to the given element and adds them to the global matrix. More...
|
| |
| template<std::size_t otherId, class JacobianBlock , class GridVariables > |
| void | assembleJacobianCoupling (Dune::index_constant< otherId > domainJ, JacobianBlock &A, const ElementResidualVector &res, GridVariables &gridVariables) |
| | Computes the coupling derivatives with respect to the given element and adds them to the global matrix. More...
|
| |
| void | assembleJacobianAndResidual (JacobianMatrixRow &jacRow, SubSolutionVector &res, GridVariablesTuple &gridVariables) |
| | 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. More...
|
| |
| void | assembleJacobianCoupling (Dune::index_constant< otherId > domainJ, JacRow &jacRow, const ElementResidualVector &res, GridVariables &gridVariables) |
| | Assemble the entries in a coupling block of the jacobian. There is no coupling block between a domain and itself. More...
|
| |
| void | assembleResidual (SubSolutionVector &res) |
| | Assemble the residual vector entries only. More...
|
| |
| ElementResidualVector | evalLocalSourceResidual (const Element &element, const ElementVolumeVariables &elemVolVars) const |
| | Evaluates the local source term for an element and given element volume variables. More...
|
| |
| ElementResidualVector | evalLocalSourceResidual (const Element &neighbor) const |
| | Evaluates the local source term depending on time discretization scheme. More...
|
| |
| void | enforceDirichletConstraints (const ApplyFunction &applyDirichlet) |
| | Enforce Dirichlet constraints. More...
|
| |
| void | evalDirichletBoundaries (ApplyDirichletFunctionType applyDirichlet) |
| | Incorporate Dirichlet boundary conditions. More...
|
| |
| void | bindLocalViews () |
| | Prepares all local views necessary for local assembly. More...
|
| |
| const Problem & | problem () const |
| | return reference to the underlying problem More...
|
| |
| CouplingManager & | couplingManager () |
| | return reference to the coupling manager More...
|
| |
| ElementResidualVector | evalLocalResidual () const |
| | Convenience function to evaluate the complete local residual for the current element. Automatically chooses the the appropriate element volume variables. More...
|
| |
| ElementResidualVector | evalLocalResidual (const ElementVolumeVariables &elemVolVars) const |
| | Evaluates the complete local residual for the current element. More...
|
| |
| 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. More...
|
| |
| 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. More...
|
| |
| ElementResidualVector | evalLocalStorageResidual () 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. More...
|
| |
| void | enforceInternalDirichletConstraints (const ApplyFunction &applyDirichlet) |
| | Enforces Dirichlet constraints if enabled in the problem. More...
|
| |
| void | enforceInternalDirichletConstraints (const ApplyFunction &applyDirichlet) |
| |
| const Assembler & | assembler () const |
| | The assembler. More...
|
| |
| const Element & | element () const |
| | The current element. More...
|
| |
| bool | elementIsGhost () const |
| | Returns if element is a ghost entity. More...
|
| |
| const SolutionVector & | curSol () const |
| | The current solution. More...
|
| |
| FVElementGeometry & | fvGeometry () |
| | The global finite volume geometry. More...
|
| |
| const FVElementGeometry & | fvGeometry () const |
| | The finite volume geometry. More...
|
| |
| ElementVolumeVariables & | curElemVolVars () |
| | The current element volume variables. More...
|
| |
| const ElementVolumeVariables & | curElemVolVars () const |
| | The current element volume variables. More...
|
| |
| ElementVolumeVariables & | prevElemVolVars () |
| | The element volume variables of the provious time step. More...
|
| |
| const ElementVolumeVariables & | prevElemVolVars () const |
| | The element volume variables of the provious time step. More...
|
| |
| ElementFluxVariablesCache & | elemFluxVarsCache () |
| | The element flux variables cache. More...
|
| |
| const ElementFluxVariablesCache & | elemFluxVarsCache () const |
| | The element flux variables cache. More...
|
| |
| LocalResidual & | localResidual () |
| | The local residual for the current element. More...
|
| |
| const LocalResidual & | localResidual () const |
| | The local residual for the current element. More...
|
| |
| ElementBoundaryTypes & | elemBcTypes () |
| | The element's boundary types. More...
|
| |
| const ElementBoundaryTypes & | elemBcTypes () const |
| | The element's boundary types. More...
|
| |