version 3.8
geomechanics/elastic/fvspatialparams.hh
Go to the documentation of this file.
1// -*- mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
2// vi: set et ts=4 sw=4 sts=4:
3//
4// SPDX-FileCopyrightInfo: Copyright © DuMux Project contributors, see AUTHORS.md in root folder
5// SPDX-License-Identifier: GPL-3.0-or-later
6//
12#ifndef DUMUX_GEOMECHANICS_ELASTIC_FV_SPATIAL_PARAMS_HH
13#define DUMUX_GEOMECHANICS_ELASTIC_FV_SPATIAL_PARAMS_HH
14
15#include <memory>
16
17#include <dune/common/exceptions.hh>
18
21#include <dumux/geomechanics/spatialparamstraits_.hh>
22
23namespace Dumux {
24
29template<class GridGeometry, class Scalar, class Implementation>
30class FVElasticSpatialParams : public FVSpatialParams<GridGeometry, Scalar, Implementation>
31{
33 using FVElementGeometry = typename GridGeometry::LocalView;
34 using SubControlVolume = typename GridGeometry::SubControlVolume;
35 using GridView = typename GridGeometry::GridView;
36 using Element = typename GridView::template Codim<0>::Entity;
37 using GlobalPosition = typename Element::Geometry::GlobalCoordinate;
38
39public:
41 FVElasticSpatialParams(std::shared_ptr<const GridGeometry> gridGeometry)
43 {}
44
55 template<class SolidSystem, class ElementSolution>
56 Scalar inertVolumeFraction(const Element& element,
57 const SubControlVolume& scv,
58 const ElementSolution& elemSol,
59 int compIdx) const
60 {
61 static_assert(SolidSystem::isInert(), "Elastic model can only be used with inert solid systems");
62
63 // when there is only one component, the volume fraction must be one
64 if constexpr (SolidSystem::numInertComponents == 1)
65 return 1.0;
66
67 // otherwise we require the user to define the solid composition
68 return this->asImp_().template inertVolumeFractionAtPos<SolidSystem>(scv.center(), compIdx);
69 }
70
79 template<class SolidSystem>
80 Scalar inertVolumeFractionAtPos(const GlobalPosition& globalPos, int compIdx) const
81 { DUNE_THROW(Dune::InvalidStateException, "The spatial parameters do not provide inertVolumeFractionAtPos() method."); }
82
96 template<class ElemVolVars, class FluxVarsCache>
97 decltype(auto) lameParams(const Element& element,
98 const FVElementGeometry& fvGeometry,
99 const ElemVolVars& elemVolVars,
100 const FluxVarsCache& fluxVarsCache) const
101 {
102 static_assert(decltype(isValid(Detail::hasLameParamsAtPos<GlobalPosition>())(this->asImp_()))::value," \n\n"
103 " Your spatial params class has to either implement\n\n"
104 " const LameParams& lameParamsAtPos(const GlobalPosition& globalPos) const\n\n"
105 " or overload this function\n\n"
106 " template<class ElementSolution>\n"
107 " const LameParams& lameParams(const Element& element,\n"
108 " const FVElementGeometry& fvGeometry,\n"
109 " const ElemVolVars& elemVolVars,\n"
110 " const FluxVarsCache& fluxVarsCache) const\n\n");
111
112 return this->asImp_().lameParamsAtPos(fluxVarsCache.ipGlobal());
113 }
114};
115
116} // end namespace Dumux
117
118#endif
The base class for spatial parameters of linear elastic geomechanical problems.
Definition: geomechanics/elastic/fvspatialparams.hh:31
Scalar inertVolumeFractionAtPos(const GlobalPosition &globalPos, int compIdx) const
Function for defining the solid volume fraction. That is possibly solution dependent.
Definition: geomechanics/elastic/fvspatialparams.hh:80
decltype(auto) lameParams(const Element &element, const FVElementGeometry &fvGeometry, const ElemVolVars &elemVolVars, const FluxVarsCache &fluxVarsCache) const
Define the Lame parameters.
Definition: geomechanics/elastic/fvspatialparams.hh:97
FVElasticSpatialParams(std::shared_ptr< const GridGeometry > gridGeometry)
The constructor.
Definition: geomechanics/elastic/fvspatialparams.hh:41
Scalar inertVolumeFraction(const Element &element, const SubControlVolume &scv, const ElementSolution &elemSol, int compIdx) const
Function for defining the solid volume fraction. That is possibly solution dependent.
Definition: geomechanics/elastic/fvspatialparams.hh:56
The base class for spatial parameters used with finite-volume schemes.
Definition: common/fvspatialparams.hh:34
Implementation & asImp_()
Returns the implementation of the spatial parameters (static polymorphism)
Definition: common/fvspatialparams.hh:135
const GridGeometry & gridGeometry() const
The finite volume grid geometry.
Definition: common/fvspatialparams.hh:130
Basic spatial parameters to be used with finite-volume schemes.
constexpr auto isValid(const Expression &t)
A function that creates a test functor to do class member introspection at compile time.
Definition: isvalid.hh:81
A helper function for class member function introspection.
Definition: adapt.hh:17