26#ifndef DUMUX_DISCRETIZATION_CC_MPFA_LOCAL_ASSEMBLER_BASE_HH
27#define DUMUX_DISCRETIZATION_CC_MPFA_LOCAL_ASSEMBLER_BASE_HH
33#include <dune/common/exceptions.hh>
34#include <dune/common/reservedvector.hh>
54template<
class P,
class EG,
class EV >
59 using FVElementGeometry = EG;
60 using ElementVolumeVariables = EV;
65 using Scalar =
typename IV::Traits::MatVecTraits::FaceVector::value_type;
86 const Problem&
problem()
const {
return *problemPtr_; }
87 const FVElementGeometry&
fvGeometry()
const {
return *fvGeometryPtr_; }
88 const ElementVolumeVariables&
elemVolVars()
const {
return *elemVolVarsPtr_; }
105 template<
class DataHandle,
class IV,
class TensorFunc >
106 void assembleMatrices(DataHandle& handle, IV& iv,
const TensorFunc& getT, Scalar<IV> wijZeroThresh = 0.0)
108 DUNE_THROW(Dune::NotImplemented,
"Implementation does not provide an assembleMatrices() function");
122 template<
class DataHandle,
class IV,
class GetU >
123 void assembleU(DataHandle& handle,
const IV& iv,
const GetU& getU)
125 DUNE_THROW(Dune::NotImplemented,
"Implementation does not provide an assemble() function for the cell/Dirichlet unknowns");
136 template<
class DataHandle,
class IV,
class GetRho >
139 using GridView =
typename IV::Traits::GridView;
140 static constexpr int dim = GridView::dimension;
141 static constexpr int dimWorld = GridView::dimensionworld;
142 static constexpr bool isSurfaceGrid = dim < dimWorld;
145 auto& g = handle.g();
146 auto& deltaG = handle.deltaG();
147 auto& outsideG = handle.gOutside();
157 using Scalar =
typename IV::Traits::MatVecTraits::TMatrix::value_type;
158 using LocalIndexType =
typename IV::Traits::IndexSet::LocalIndexType;
160 for (LocalIndexType faceIdx = 0; faceIdx < iv.numFaces(); ++faceIdx)
163 const auto& curLocalScvf = iv.localScvf(faceIdx);
164 const auto& curGlobalScvf =
fvGeometry().scvf(curLocalScvf.gridScvfIndex());
165 const auto& gravity =
problem().spatialParams().gravity(curGlobalScvf.ipGlobal());
168 const auto& neighborScvIndices = curLocalScvf.neighboringLocalScvIndices();
169 const auto& posGlobalScv =
fvGeometry().scv(iv.localScv(neighborScvIndices[0]).gridScvIndex());
170 const auto& posVolVars =
elemVolVars()[posGlobalScv];
171 const auto alpha_inside = posVolVars.extrusionFactor()*
vtmv(curGlobalScvf.unitOuterNormal(),
172 posVolVars.permeability(),
175 const auto numOutsideFaces = !curGlobalScvf.boundary() ? curGlobalScvf.numOutsideScvs() : 0;
176 using OutsideAlphaStorage = std::conditional_t< isSurfaceGrid,
178 Dune::ReservedVector<Scalar, 1> >;
179 OutsideAlphaStorage alpha_outside; alpha_outside.resize(numOutsideFaces);
180 std::fill(alpha_outside.begin(), alpha_outside.end(), 0.0);
186 if (!curLocalScvf.isDirichlet())
188 const auto localDofIdx = curLocalScvf.localDofIndex();
190 rho = getRho(posVolVars);
191 deltaG[localDofIdx] = 0.0;
193 if (!curGlobalScvf.boundary())
195 for (
unsigned int idxInOutside = 0; idxInOutside < curGlobalScvf.numOutsideScvs(); ++idxInOutside)
198 const auto negLocalScvIdx = neighborScvIndices[idxInOutside+1];
199 const auto& negGlobalScv =
fvGeometry().scv(iv.localScv(negLocalScvIdx).gridScvIndex());
200 const auto& negVolVars =
elemVolVars()[negGlobalScv];
201 const auto& flipScvf = !isSurfaceGrid ? curGlobalScvf
202 :
fvGeometry().flipScvf(curGlobalScvf.index(), idxInOutside);
204 alpha_outside[idxInOutside] = negVolVars.extrusionFactor()*
vtmv(flipScvf.unitOuterNormal(),
205 negVolVars.permeability(),
208 alpha_outside[idxInOutside] *= -1.0;
210 rho += getRho(negVolVars);
211 deltaG[localDofIdx] += alpha_outside[idxInOutside];
215 rho /= numOutsideFaces + 1;
216 deltaG[localDofIdx] -= alpha_inside;
217 deltaG[localDofIdx] *= rho*Extrusion::area(
fvGeometry(), curGlobalScvf);
221 rho = getRho(
elemVolVars()[curGlobalScvf.outsideScvIdx()]);
224 g[faceIdx] = alpha_inside*rho*Extrusion::area(
fvGeometry(), curGlobalScvf);
229 for (
const auto& alpha : alpha_outside)
230 outsideG[faceIdx][i++] = alpha*rho*Extrusion::area(
fvGeometry(), curGlobalScvf);
235 handle.CA().umv(deltaG, g);
238 using FaceVector =
typename IV::Traits::MatVecTraits::FaceVector;
241 handle.A().mv(deltaG, AG);
244 for (
const auto& localFaceData : iv.localFaceData())
247 if (!localFaceData.isOutsideFace())
250 const auto localScvIdx = localFaceData.ivLocalInsideScvIndex();
251 const auto localScvfIdx = localFaceData.ivLocalScvfIndex();
252 const auto idxInOutside = localFaceData.scvfLocalOutsideScvfIndex();
253 const auto& posLocalScv = iv.localScv(localScvIdx);
254 const auto& wijk = handle.omegas()[localScvfIdx][idxInOutside+1];
257 for (LocalIndexType localDir = 0; localDir < dim; localDir++)
260 const auto& curLocalScvf = iv.localScvf(posLocalScv.localScvfIndex(localDir));
261 if (!curLocalScvf.isDirichlet())
262 outsideG[localScvfIdx][idxInOutside] -= wijk[localDir]*AG[curLocalScvf.localDofIndex()];
270 const Problem* problemPtr_;
271 const FVElementGeometry* fvGeometryPtr_;
272 const ElementVolumeVariables* elemVolVarsPtr_;
A helper function for class member function introspection.
A class that contains helper functions as well as functionality which is common to different mpfa sch...
Helper classes to compute the integration elements.
Dune::DenseMatrix< MAT >::value_type vtmv(const Dune::DenseVector< V1 > &v1, const Dune::DenseMatrix< MAT > &M, const Dune::DenseVector< V2 > &v2)
Evaluates the scalar product of a vector v2, projected by a matrix M, with a vector v1.
Definition: math.hh:863
Adaption of the non-isothermal two-phase two-component flow model to problems with CO2.
Definition: adapt.hh:29
typename Extrusion< T >::type Extrusion_t
Convenience alias for obtaining the extrusion type.
Definition: extrusion.hh:251
Defines the general interface of the local assembler classes for the assembly of the interaction volu...
Definition: localassemblerbase.hh:57
const FVElementGeometry & fvGeometry() const
Definition: localassemblerbase.hh:87
void assembleMatrices(DataHandle &handle, IV &iv, const TensorFunc &getT, Scalar< IV > wijZeroThresh=0.0)
Assembles the matrices involved in the flux expressions and the local system of equations within an m...
Definition: localassemblerbase.hh:106
const ElementVolumeVariables & elemVolVars() const
Definition: localassemblerbase.hh:88
InteractionVolumeAssemblerBase(const Problem &problem, const FVElementGeometry &fvGeometry, const ElementVolumeVariables &elemVolVars)
The constructor. Sets pointers to the objects required for a subsequent call to assemble().
Definition: localassemblerbase.hh:76
void assembleU(DataHandle &handle, const IV &iv, const GetU &getU)
Assembles the vector of primary (cell) unknowns and (maybe) Dirichlet boundary conditions within an i...
Definition: localassemblerbase.hh:123
void assembleGravity(DataHandle &handle, const IV &iv, const GetRho &getRho)
Assembles the gravitational flux contributions on the scvfs within an interaction volume.
Definition: localassemblerbase.hh:137
const Problem & problem() const
Definition: localassemblerbase.hh:86
A class that contains helper functions as well as functionality which is common to different mpfa sch...
Definition: localassemblerhelper.hh:46
static void resizeVector(Vector &v, size_type size)
resizes a vector to the given size (specialization for dynamic matrix type)
Definition: localassemblerhelper.hh:238