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.
#include <dumux/discretization/facecentered/staggered/fvgridgeometry.hh>
Public Types | |
| using | DiscretizationMethod = DiscretizationMethods::FCStaggered |
| export the discretization method this geometry belongs to | |
| using | BasicGridGeometry = BasicGridGeometry_t<GV, Traits> |
| export basic grid geometry type for the alternative constructor | |
| using | LocalView = typename Traits::template LocalView<ThisType, false> |
| export the type of the fv element geometry (the local view type) | |
| using | SubControlVolume = typename Traits::SubControlVolume |
| export the type of sub control volume | |
| using | SubControlVolumeFace = typename Traits::SubControlVolumeFace |
| export the type of sub control volume | |
| using | GridView = GV |
| export the grid view type | |
| using | GeometryHelper = typename Traits::GeometryHelper |
| export the geometry helper type | |
| using | LocalIntersectionMapper = typename Traits::LocalIntersectionMapper |
| export the local intersection mapper | |
| using | StaticInformation = typename Traits::StaticInfo |
| export static information | |
| using | Extrusion = Extrusion_t<Traits> |
| export the type of extrusion | |
| using | SupportsPeriodicity = typename PeriodicGridTraits<typename GV::Grid>::SupportsPeriodicity |
| export whether the grid(geometry) supports periodicity | |
| using | Grid = typename BaseImplementation::Grid |
| export the grid type | |
| using | GlobalCoordinate = typename BaseImplementation::GlobalCoordinate |
| export the global coordinate type | |
| using | ElementMapper = typename BaseImplementation::ElementMapper |
| export the element mapper type | |
| using | VertexMapper = typename BaseImplementation::VertexMapper |
| export the vertex mapper type | |
Public Member Functions | |
| FaceCenteredStaggeredFVGridGeometry (std::shared_ptr< BasicGridGeometry > gg, const std::string ¶mGroup="") | |
| Constructor with basic grid geometry used to share state with another grid geometry on the same grid view. | |
| FaceCenteredStaggeredFVGridGeometry (const GridView &gridView, const std::string ¶mGroup="") | |
| Constructor from gridView. | |
| std::size_t | numScv () const |
| The total number of sub control volumes. | |
| std::size_t | numScvf () const |
| The total number of sub control volume faces. | |
| std::size_t | numBoundaryScv () const |
| The total number of boundary sub control volumes. | |
| std::size_t | numBoundaryScvf () const |
| The total number of boundary sub control volume faces. | |
| std::size_t | numIntersections () const |
| The total number of intersections. | |
| std::size_t | numDofs () const |
| the total number of dofs | |
| const ConnectivityMap & | connectivityMap () const |
| Returns the connectivity map of which dofs have derivatives with respect to a given dof. | |
| bool | hasBoundaryScvf (GridIndexType eIdx) const |
| Returns whether one of the geometry's scvfs lies on a boundary. | |
| const IntersectionMapper & | intersectionMapper () const |
| Return a reference to the intersection mapper. | |
| const std::vector< GridIndexType > & | scvfIndicesOfElement (GridIndexType eIdx) const |
| Get the global sub control volume face indices of an element. | |
| GridIndexType | outsideVolVarIndex (GridIndexType scvfIdx) const |
| Get the global sub control volume face indices of an element. | |
| void | update (const GridView &gridView) |
| update all fvElementGeometries (call this after grid adaption) | |
| void | update (GridView &&gridView) |
| update all fvElementGeometries (call this after grid adaption) | |
| bool | dofOnPeriodicBoundary (GridIndexType dofIdx) const |
| If a d.o.f. is on a periodic boundary. | |
| GridIndexType | periodicallyMappedDof (GridIndexType dofIdx) const |
| The index of the d.o.f. on the other side of the periodic boundary. | |
| const std::unordered_map< GridIndexType, GridIndexType > & | periodicDofMap () const |
| Returns the map between dofs across periodic boundaries. | |
| void | update (const GridView &gridView) |
| Update all fvElementGeometries (call this after grid adaption). | |
| void | update (GridView &&gridView) |
| Update all fvElementGeometries (call this after grid adaption). | |
| const GridView & | gridView () const |
| Return the gridView this grid geometry object lives on. | |
| const VertexMapper & | vertexMapper () const |
| Returns the mapper for vertices to indices for constant grids. | |
| VertexMapper & | vertexMapper () |
| Returns the mapper for vertices to indices for possibly adaptive grids. | |
| const ElementMapper & | elementMapper () const |
| Returns the mapper for elements to indices for constant grids. | |
| ElementMapper & | elementMapper () |
| Returns the mapper for elements to indices for possibly adaptive grids. | |
| decltype(auto) | boundingBoxTree () const |
| Returns the bounding box tree of the grid. | |
| decltype(auto) | elementMap () const |
| Returns the element index to element map. | |
| Element | element (GridIndexType eIdx) const |
| Get an element from a global element index. | |
| const GlobalCoordinate & | bBoxMin () const |
| The coordinate of the corner of the GridView's bounding box with the smallest values. | |
| const GlobalCoordinate & | bBoxMax () const |
| The coordinate of the corner of the GridView's bounding box with the largest values. | |
| bool | isPeriodic () const |
| Returns if the grid geometry is periodic (at all). | |
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. | |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::BasicGridGeometry = BasicGridGeometry_t<GV, Traits> |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::DiscretizationMethod = DiscretizationMethods::FCStaggered |
|
inherited |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::Extrusion = Extrusion_t<Traits> |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::GeometryHelper = typename Traits::GeometryHelper |
|
inherited |
|
inherited |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::GridView = GV |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::LocalIntersectionMapper = typename Traits::LocalIntersectionMapper |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::LocalView = typename Traits::template LocalView<ThisType, false> |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::StaticInformation = typename Traits::StaticInfo |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::SubControlVolume = typename Traits::SubControlVolume |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::SubControlVolumeFace = typename Traits::SubControlVolumeFace |
| using Dumux::FaceCenteredStaggeredFVGridGeometry< GV, false, Traits >::SupportsPeriodicity = typename PeriodicGridTraits<typename GV::Grid>::SupportsPeriodicity |
|
inherited |
|
inline |
|
inline |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inline |
|
inline |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inlineinherited |
|
inline |
|
inline |
|
inlineinherited |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inline |
|
inlineprotectedinherited |
|
inlineinherited |
|
inlineinherited |
|
inline |
|
inline |
|
inlineinherited |
|
inlineinherited |
|
staticconstexpr |
|
staticconstexpr |