3.6-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
Public Types | Public Member Functions | Static Public Attributes | Protected Member Functions | List of all members
Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits > Class Template Reference

Base class for the finite volume geometry vector for face-centered staggered models This builds up the sub control volumes and sub control volume faces for each element. Specialization in case the FVElementGeometries are stored. More...

#include <dumux/discretization/facecentered/staggered/fvgridgeometry.hh>

Inheritance diagram for Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >:

Description

template<class GV, class Traits>
class Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >

Base class for the finite volume geometry vector for face-centered staggered models This builds up the sub control volumes and sub control volume faces for each element. Specialization in case the FVElementGeometries are stored.

Public Types

using DiscretizationMethod = DiscretizationMethods::FCStaggered
 export the discretization method this geometry belongs to More...
 
using BasicGridGeometry = BasicGridGeometry_t< GV, Traits >
 export basic grid geometry type for the alternative constructor More...
 
using LocalView = typename Traits::template LocalView< ThisType, false >
 export the type of the fv element geometry (the local view type) More...
 
using SubControlVolume = typename Traits::SubControlVolume
 export the type of sub control volume More...
 
using SubControlVolumeFace = typename Traits::SubControlVolumeFace
 export the type of sub control volume More...
 
using GridView = GV
 export the grid view type More...
 
using GeometryHelper = typename Traits::GeometryHelper
 export the geometry helper type More...
 
using LocalIntersectionMapper = typename Traits::LocalIntersectionMapper
 export the local intersection mapper More...
 
using StaticInformation = typename Traits::StaticInfo
 export static information More...
 
using Extrusion = Extrusion_t< Traits >
 export the type of extrusion More...
 
using Grid = typename BaseImplementation::Grid
 export the grid type More...
 
using GlobalCoordinate = typename BaseImplementation::GlobalCoordinate
 export the global coordinate type More...
 
using ElementMapper = typename BaseImplementation::ElementMapper
 export the element mapper type More...
 
using VertexMapper = typename BaseImplementation::VertexMapper
 export the vertex mapper type More...
 

Public Member Functions

 FaceCenteredStaggeredFVGridGeometry (std::shared_ptr< BasicGridGeometry > gg, const std::string &paramGroup="")
 Constructor with basic grid geometry used to share state with another grid geometry on the same grid view. More...
 
 FaceCenteredStaggeredFVGridGeometry (const GridView &gridView, const std::string &paramGroup="")
 Constructor from gridView. More...
 
std::size_t numScv () const
 The total number of sub control volumes. More...
 
std::size_t numScvf () const
 The total number of sub control volume faces. More...
 
std::size_t numBoundaryScv () const
 The total number of boundary sub control volumes. More...
 
std::size_t numBoundaryScvf () const
 The total number of boundary sub control volume faces. More...
 
std::size_t numIntersections () const
 The total number of intersections. More...
 
std::size_t numDofs () const
 the total number of dofs More...
 
const ConnectivityMap & connectivityMap () const
 Returns the connectivity map of which dofs have derivatives with respect to a given dof. More...
 
bool hasBoundaryScvf (GridIndexType eIdx) const
 Returns whether one of the geometry's scvfs lies on a boundary. More...
 
const IntersectionMapper & intersectionMapper () const
 Return a reference to the intersection mapper. More...
 
const std::vector< GridIndexType > & scvfIndicesOfElement (GridIndexType eIdx) const
 Get the global sub control volume face indices of an element. More...
 
GridIndexType outsideVolVarIndex (GridIndexType scvfIdx) const
 Get the global sub control volume face indices of an element. More...
 
void update (const GridView &gridView)
 update all fvElementGeometries (call this after grid adaption) More...
 
void update (GridView &&gridView)
 update all fvElementGeometries (call this after grid adaption) More...
 
bool dofOnPeriodicBoundary (GridIndexType dofIdx) const
 If a d.o.f. is on a periodic boundary. More...
 
GridIndexType periodicallyMappedDof (GridIndexType dofIdx) const
 The index of the d.o.f. on the other side of the periodic boundary. More...
 
const std::unordered_map< GridIndexType, GridIndexType > & periodicVertexMap () const
 Returns the map between dofs across periodic boundaries // TODO rename to periodic dof map in fvassembler. More...
 
const GridViewgridView () const
 Return the gridView this grid geometry object lives on. More...
 
const VertexMappervertexMapper () const
 Returns the mapper for vertices to indices for constant grids. More...
 
VertexMappervertexMapper ()
 Returns the mapper for vertices to indices for possibly adaptive grids. More...
 
const ElementMapperelementMapper () const
 Returns the mapper for elements to indices for constant grids. More...
 
ElementMapperelementMapper ()
 Returns the mapper for elements to indices for possibly adaptive grids. More...
 
decltype(auto) boundingBoxTree () const
 Returns the bounding box tree of the grid. More...
 
decltype(auto) elementMap () const
 Returns the element index to element map. More...
 
Element element (GridIndexType eIdx) const
 Get an element from a global element index. More...
 
const GlobalCoordinatebBoxMin () const
 The coordinate of the corner of the GridView's bounding box with the smallest values. More...
 
const GlobalCoordinatebBoxMax () const
 The coordinate of the corner of the GridView's bounding box with the largest values. More...
 
bool isPeriodic () const
 Returns if the grid geometry is periodic (at all) More...
 

Static Public Attributes

static constexpr DiscretizationMethod discMethod {}
 
static constexpr bool cachingEnabled = false
 

Protected Member Functions

void setPeriodic (bool value=true)
 Set the periodicity of the grid geometry. More...
 

Member Typedef Documentation

◆ BasicGridGeometry

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::BasicGridGeometry = BasicGridGeometry_t<GV, Traits>

export basic grid geometry type for the alternative constructor

◆ DiscretizationMethod

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::DiscretizationMethod = DiscretizationMethods::FCStaggered

export the discretization method this geometry belongs to

◆ ElementMapper

template<class GV , class Traits >
using Dumux::BaseGridGeometry< GV, Traits >::ElementMapper = typename BaseImplementation::ElementMapper
inherited

export the element mapper type

◆ Extrusion

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::Extrusion = Extrusion_t<Traits>

export the type of extrusion

◆ GeometryHelper

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::GeometryHelper = typename Traits::GeometryHelper

export the geometry helper type

◆ GlobalCoordinate

template<class GV , class Traits >
using Dumux::BaseGridGeometry< GV, Traits >::GlobalCoordinate = typename BaseImplementation::GlobalCoordinate
inherited

export the global coordinate type

◆ Grid

template<class GV , class Traits >
using Dumux::BaseGridGeometry< GV, Traits >::Grid = typename BaseImplementation::Grid
inherited

export the grid type

◆ GridView

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::GridView = GV

export the grid view type

◆ LocalIntersectionMapper

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::LocalIntersectionMapper = typename Traits::LocalIntersectionMapper

export the local intersection mapper

◆ LocalView

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::LocalView = typename Traits::template LocalView<ThisType, false>

export the type of the fv element geometry (the local view type)

◆ StaticInformation

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::StaticInformation = typename Traits::StaticInfo

export static information

◆ SubControlVolume

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::SubControlVolume = typename Traits::SubControlVolume

export the type of sub control volume

◆ SubControlVolumeFace

template<class GV , class Traits >
using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::SubControlVolumeFace = typename Traits::SubControlVolumeFace

export the type of sub control volume

◆ VertexMapper

template<class GV , class Traits >
using Dumux::BaseGridGeometry< GV, Traits >::VertexMapper = typename BaseImplementation::VertexMapper
inherited

export the vertex mapper type

Constructor & Destructor Documentation

◆ FaceCenteredStaggeredFVGridGeometry() [1/2]

template<class GV , class Traits >
Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::FaceCenteredStaggeredFVGridGeometry ( std::shared_ptr< BasicGridGeometry gg,
const std::string &  paramGroup = "" 
)
inline

Constructor with basic grid geometry used to share state with another grid geometry on the same grid view.

◆ FaceCenteredStaggeredFVGridGeometry() [2/2]

template<class GV , class Traits >
Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::FaceCenteredStaggeredFVGridGeometry ( const GridView gridView,
const std::string &  paramGroup = "" 
)
inline

Constructor from gridView.

Member Function Documentation

◆ bBoxMax()

template<class GV , class Traits >
const GlobalCoordinate & Dumux::BaseGridGeometry< GV, Traits >::bBoxMax ( ) const
inlineinherited

The coordinate of the corner of the GridView's bounding box with the largest values.

◆ bBoxMin()

template<class GV , class Traits >
const GlobalCoordinate & Dumux::BaseGridGeometry< GV, Traits >::bBoxMin ( ) const
inlineinherited

The coordinate of the corner of the GridView's bounding box with the smallest values.

◆ boundingBoxTree()

template<class GV , class Traits >
decltype(auto) Dumux::BaseGridGeometry< GV, Traits >::boundingBoxTree ( ) const
inlineinherited

Returns the bounding box tree of the grid.

◆ connectivityMap()

template<class GV , class Traits >
const ConnectivityMap & Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::connectivityMap ( ) const
inline

Returns the connectivity map of which dofs have derivatives with respect to a given dof.

◆ dofOnPeriodicBoundary()

template<class GV , class Traits >
bool Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::dofOnPeriodicBoundary ( GridIndexType  dofIdx) const
inline

If a d.o.f. is on a periodic boundary.

◆ element()

template<class GV , class Traits >
Element Dumux::BaseGridGeometry< GV, Traits >::element ( GridIndexType  eIdx) const
inlineinherited

Get an element from a global element index.

◆ elementMap()

template<class GV , class Traits >
decltype(auto) Dumux::BaseGridGeometry< GV, Traits >::elementMap ( ) const
inlineinherited

Returns the element index to element map.

◆ elementMapper() [1/2]

template<class GV , class Traits >
ElementMapper & Dumux::BaseGridGeometry< GV, Traits >::elementMapper ( )
inlineinherited

Returns the mapper for elements to indices for possibly adaptive grids.

◆ elementMapper() [2/2]

template<class GV , class Traits >
const ElementMapper & Dumux::BaseGridGeometry< GV, Traits >::elementMapper ( ) const
inlineinherited

Returns the mapper for elements to indices for constant grids.

◆ gridView()

template<class GV , class Traits >
const GridView & Dumux::BaseGridGeometry< GV, Traits >::gridView ( ) const
inlineinherited

Return the gridView this grid geometry object lives on.

◆ hasBoundaryScvf()

template<class GV , class Traits >
bool Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::hasBoundaryScvf ( GridIndexType  eIdx) const
inline

Returns whether one of the geometry's scvfs lies on a boundary.

◆ intersectionMapper()

template<class GV , class Traits >
const IntersectionMapper & Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::intersectionMapper ( ) const
inline

Return a reference to the intersection mapper.

◆ isPeriodic()

template<class GV , class Traits >
bool Dumux::BaseGridGeometry< GV, Traits >::isPeriodic ( ) const
inlineinherited

Returns if the grid geometry is periodic (at all)

◆ numBoundaryScv()

template<class GV , class Traits >
std::size_t Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::numBoundaryScv ( ) const
inline

The total number of boundary sub control volumes.

◆ numBoundaryScvf()

template<class GV , class Traits >
std::size_t Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::numBoundaryScvf ( ) const
inline

The total number of boundary sub control volume faces.

◆ numDofs()

template<class GV , class Traits >
std::size_t Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::numDofs ( ) const
inline

the total number of dofs

◆ numIntersections()

template<class GV , class Traits >
std::size_t Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::numIntersections ( ) const
inline

The total number of intersections.

◆ numScv()

template<class GV , class Traits >
std::size_t Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::numScv ( ) const
inline

The total number of sub control volumes.

◆ numScvf()

template<class GV , class Traits >
std::size_t Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::numScvf ( ) const
inline

The total number of sub control volume faces.

◆ outsideVolVarIndex()

template<class GV , class Traits >
GridIndexType Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::outsideVolVarIndex ( GridIndexType  scvfIdx) const
inline

Get the global sub control volume face indices of an element.

◆ periodicallyMappedDof()

template<class GV , class Traits >
GridIndexType Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::periodicallyMappedDof ( GridIndexType  dofIdx) const
inline

The index of the d.o.f. on the other side of the periodic boundary.

◆ periodicVertexMap()

template<class GV , class Traits >
const std::unordered_map< GridIndexType, GridIndexType > & Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::periodicVertexMap ( ) const
inline

Returns the map between dofs across periodic boundaries // TODO rename to periodic dof map in fvassembler.

◆ scvfIndicesOfElement()

template<class GV , class Traits >
const std::vector< GridIndexType > & Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::scvfIndicesOfElement ( GridIndexType  eIdx) const
inline

Get the global sub control volume face indices of an element.

◆ setPeriodic()

template<class GV , class Traits >
void Dumux::BaseGridGeometry< GV, Traits >::setPeriodic ( bool  value = true)
inlineprotectedinherited

Set the periodicity of the grid geometry.

◆ update() [1/2]

template<class GV , class Traits >
void Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::update ( const GridView gridView)
inline

update all fvElementGeometries (call this after grid adaption)

◆ update() [2/2]

template<class GV , class Traits >
void Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::update ( GridView &&  gridView)
inline

update all fvElementGeometries (call this after grid adaption)

◆ vertexMapper() [1/2]

template<class GV , class Traits >
VertexMapper & Dumux::BaseGridGeometry< GV, Traits >::vertexMapper ( )
inlineinherited

Returns the mapper for vertices to indices for possibly adaptive grids.

◆ vertexMapper() [2/2]

template<class GV , class Traits >
const VertexMapper & Dumux::BaseGridGeometry< GV, Traits >::vertexMapper ( ) const
inlineinherited

Returns the mapper for vertices to indices for constant grids.

Member Data Documentation

◆ cachingEnabled

template<class GV , class Traits >
constexpr bool Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::cachingEnabled = false
staticconstexpr

◆ discMethod

template<class GV , class Traits >
constexpr DiscretizationMethod Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::discMethod {}
staticconstexpr

The documentation for this class was generated from the following file: