From dbd8f18b872f701d9ee5092d2de4a23ff7b87b66 Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Tue, 19 May 2020 11:13:27 +0200 Subject: [PATCH] [facet][box] Export element type in FV element geometry --- dumux/multidomain/facet/box/fvelementgeometry.hh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dumux/multidomain/facet/box/fvelementgeometry.hh b/dumux/multidomain/facet/box/fvelementgeometry.hh index 6fd4666bf8..910a1df660 100644 --- a/dumux/multidomain/facet/box/fvelementgeometry.hh +++ b/dumux/multidomain/facet/box/fvelementgeometry.hh @@ -56,11 +56,12 @@ class BoxFacetCouplingFVElementGeometry<GG, true> static constexpr int dimWorld = GridView::dimensionworld; using GridIndexType = typename IndexTraits<GridView>::GridIndex; using LocalIndexType = typename IndexTraits<GridView>::LocalIndex; - using Element = typename GridView::template Codim<0>::Entity; using CoordScalar = typename GridView::ctype; using FeLocalBasis = typename GG::FeCache::FiniteElementType::Traits::LocalBasisType; using ReferenceElements = typename Dune::ReferenceElements<CoordScalar, dim>; public: + //! export type of the element + using Element = typename GridView::template Codim<0>::Entity; //! export type of subcontrol volume using SubControlVolume = typename GG::SubControlVolume; //! export type of subcontrol volume face @@ -159,7 +160,6 @@ class BoxFacetCouplingFVElementGeometry<GG, false> using GridIndexType = typename IndexTraits<GridView>::GridIndex; using LocalIndexType = typename IndexTraits<GridView>::LocalIndex; - using Element = typename GridView::template Codim<0>::Entity; using CoordScalar = typename GridView::ctype; using FeLocalBasis = typename GG::FeCache::FiniteElementType::Traits::LocalBasisType; @@ -169,6 +169,8 @@ class BoxFacetCouplingFVElementGeometry<GG, false> typename GG::SubControlVolume, typename GG::SubControlVolumeFace>; public: + //! export type of the element + using Element = typename GridView::template Codim<0>::Entity; //! export type of subcontrol volume using SubControlVolume = typename GG::SubControlVolume; //! export type of subcontrol volume face -- GitLab