25#ifndef DUMUX_MULTIDOMAIN_EMBEDDED_EXTENDEDSOURCESTENCIL_HH
26#define DUMUX_MULTIDOMAIN_EMBEDDED_EXTENDEDSOURCESTENCIL_HH
30#include <dune/common/indices.hh>
46template<
class CouplingManager>
49 using MDTraits =
typename CouplingManager::MultiDomainTraits;
50 using Scalar =
typename MDTraits::Scalar;
52 template<std::
size_t id>
using SubDomainTypeTag =
typename MDTraits::template SubDomain<id>::TypeTag;
54 template<std::
size_t id>
using GridView =
typename GridGeometry<id>::GridView;
55 template<std::
size_t id>
using Element =
typename GridView<id>::template Codim<0>::Entity;
57 static constexpr auto bulkIdx =
typename MDTraits::template SubDomain<0>::Index();
58 static constexpr auto lowDimIdx =
typename MDTraits::template SubDomain<1>::Index();
60 template<std::
size_t id>
61 static constexpr bool isBox()
70 template<std::
size_t id,
class JacobianPattern>
74 for (
const auto& element : elements(couplingManager.gridView(domainI)))
76 const auto& dofs = extendedSourceStencil_(couplingManager, domainI, element);
77 if constexpr (isBox<domainI>())
79 for (
int i = 0; i < element.subEntities(GridView<domainI>::dimension); ++i)
80 for (
const auto globalJ : dofs)
81 pattern.add(couplingManager.
problem(domainI).gridGeometry().vertexMapper().subIndex(element, i, GridView<domainI>::dimension), globalJ);
85 const auto globalI = couplingManager.
problem(domainI).gridGeometry().elementMapper().index(element);
86 for (
const auto globalJ : dofs)
87 pattern.add(globalI, globalJ);
99 template<std::
size_t i,
class LocalAssemblerI,
class JacobianMatrixDiagBlock,
class Gr
idVariables>
101 Dune::index_constant<i> domainI,
102 const LocalAssemblerI& localAssemblerI,
103 JacobianMatrixDiagBlock& A,
104 GridVariables& gridVariables)
const
106 const auto& curSolI = couplingManager.
curSol(domainI);
107 constexpr auto numEq = std::decay_t<
decltype(curSolI[0])>::size();
108 const auto& elementI = localAssemblerI.element();
111 if (extendedSourceStencil_(couplingManager, domainI, elementI).empty())
115 const auto origResidual = localAssemblerI.evalLocalSourceResidual(elementI);
118 for (
const auto dofIndex : extendedSourceStencil_(couplingManager, domainI, elementI))
120 auto partialDerivs = origResidual;
121 const auto origPriVars = curSolI[dofIndex];
122 auto priVars = origPriVars;
125 for (
int pvIdx = 0; pvIdx < numEq; pvIdx++)
130 const auto evalResiduals = [&](
const Scalar priVar)
133 priVars[pvIdx] = priVar;
135 return localAssemblerI.evalLocalSourceResidual(elementI);
140 static const int numDiffMethod = getParamFromGroup<int>(localAssemblerI.problem().paramGroup(),
"Assembly.NumericDifferenceMethod");
142 evalResiduals, priVars[pvIdx], partialDerivs, origResidual, eps_(priVars[pvIdx], pvIdx), numDiffMethod
146 for (
const auto& scvJ : scvs(localAssemblerI.fvGeometry()))
148 for (
int eqIdx = 0; eqIdx < numEq; eqIdx++)
154 A[scvJ.dofIndex()][dofIndex][eqIdx][pvIdx] += partialDerivs[scvJ.indexInElement()][eqIdx];
159 priVars[pvIdx] = origPriVars[pvIdx];
162 couplingManager.
updateCouplingContext(domainI, localAssemblerI, domainI, dofIndex, origPriVars, pvIdx);
168 void clear() { sourceStencils_.clear(); }
171 typename CouplingManager::template CouplingStencils<bulkIdx>&
stencil()
172 {
return sourceStencils_; }
175 const typename CouplingManager::template CouplingStencils<bulkIdx>&
stencil()
const
176 {
return sourceStencils_; }
180 template<std::
size_t id>
181 const auto& extendedSourceStencil_(
const CouplingManager& couplingManager, Dune::index_constant<id> domainId,
const Element<id>& element)
const
183 if constexpr (domainId == bulkIdx)
185 const auto bulkElementIdx = couplingManager.
problem(bulkIdx).gridGeometry().elementMapper().index(element);
186 if (
auto stencil = sourceStencils_.find(bulkElementIdx);
stencil != sourceStencils_.end())
190 return couplingManager.emptyStencil(domainId);
194 typename CouplingManager::template CouplingStencils<bulkIdx> sourceStencils_;
An adapter class for local assemblers using numeric differentiation.
The infrastructure to retrieve run-time parameters from Dune::ParameterTrees.
A class for numeric differentiation.
The available discretization methods in Dumux.
void updateCouplingContext(Dune::index_constant< i > domainI, const LocalAssemblerI &localAssemblerI, Dune::index_constant< j > domainJ, std::size_t dofIdxGlobalJ, const PrimaryVariables< j > &priVarsJ, int pvIdxJ)
updates all data and variables that are necessary to evaluate the residual of the element of domain i...
Definition: multidomain/couplingmanager.hh:195
typename GetProp< TypeTag, Property >::type GetPropType
get the type alias defined in the property
Definition: propertysystem.hh:180
constexpr Box box
Definition: method.hh:136
Definition: circlepoints.hh:36
A helper class for local assemblers using numeric differentiation to determine the epsilon.
Definition: numericepsilon.hh:41
static void partialDerivative(const Function &function, Scalar x0, FunctionEvalType &derivative, const FunctionEvalType &fx0, const int numericDifferenceMethod=1)
Computes the derivative of a function with respect to a function parameter.
Definition: numericdifferentiation.hh:61
Definition: common/properties.hh:100
The interface of the coupling manager for multi domain problems.
Definition: multidomain/couplingmanager.hh:60
const Problem< i > & problem(Dune::index_constant< i > domainIdx) const
Return a reference to the sub problem.
Definition: multidomain/couplingmanager.hh:321
SubSolutionVector< i > & curSol(Dune::index_constant< i > domainIdx)
the solution vector of the subproblem
Definition: multidomain/couplingmanager.hh:350
A class managing an extended source stencil.
Definition: extendedsourcestencil.hh:48
void evalAdditionalDomainDerivatives(CouplingManager &couplingManager, Dune::index_constant< i > domainI, const LocalAssemblerI &localAssemblerI, JacobianMatrixDiagBlock &A, GridVariables &gridVariables) const
evaluate additional derivatives of the element residual of a domain with respect to dofs in the same ...
Definition: extendedsourcestencil.hh:100
void extendJacobianPattern(const CouplingManager &couplingManager, Dune::index_constant< id > domainI, JacobianPattern &pattern) const
extend the jacobian pattern of the diagonal block of domain i by those entries that are not already i...
Definition: extendedsourcestencil.hh:71
const CouplingManager::template CouplingStencils< bulkIdx > & stencil() const
return a const reference to the stencil
Definition: extendedsourcestencil.hh:175
void clear()
clear the internal data
Definition: extendedsourcestencil.hh:168
CouplingManager::template CouplingStencils< bulkIdx > & stencil()
return a reference to the stencil
Definition: extendedsourcestencil.hh:171
Declares all properties used in Dumux.