Skip to content
Snippets Groups Projects
Commit 532a33ab authored by Timo Koch's avatar Timo Koch
Browse files

[staggered] Export element type in FV element geometry

parent 5db13cee
No related branches found
No related tags found
2 merge requests!2134WIP Feature/timestepper test,!2132Export element type in FV element geometry
...@@ -57,6 +57,8 @@ class StaggeredFVElementGeometry<GG, true> : public CCTpfaFVElementGeometry<GG, ...@@ -57,6 +57,8 @@ class StaggeredFVElementGeometry<GG, true> : public CCTpfaFVElementGeometry<GG,
using GridIndexType = typename IndexTraits<GridView>::GridIndex; using GridIndexType = typename IndexTraits<GridView>::GridIndex;
using LocalIndexType = typename IndexTraits<GridView>::LocalIndex; using LocalIndexType = typename IndexTraits<GridView>::LocalIndex;
public: public:
//! export type of the element
using Element = typename GridView::template Codim<0>::Entity;
//! export type of subcontrol volume face //! export type of subcontrol volume face
using SubControlVolumeFace = typename GG::SubControlVolumeFace; using SubControlVolumeFace = typename GG::SubControlVolumeFace;
...@@ -91,8 +93,9 @@ class StaggeredFVElementGeometry<GG, false> ...@@ -91,8 +93,9 @@ class StaggeredFVElementGeometry<GG, false>
using GridView = typename GG::GridView; using GridView = typename GG::GridView;
using GridIndexType = typename IndexTraits<GridView>::GridIndex; using GridIndexType = typename IndexTraits<GridView>::GridIndex;
using LocalIndexType = typename IndexTraits<GridView>::LocalIndex; using LocalIndexType = typename IndexTraits<GridView>::LocalIndex;
using Element = typename GridView::template Codim<0>::Entity;
public: public:
//! export type of the element
using Element = typename GridView::template Codim<0>::Entity;
//! export type of subcontrol volume //! export type of subcontrol volume
using SubControlVolume = typename GG::SubControlVolume; using SubControlVolume = typename GG::SubControlVolume;
//! export type of subcontrol volume face //! export type of subcontrol volume face
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment