Skip to content
Snippets Groups Projects
Commit cdc91026 authored by Kilian Weishaupt's avatar Kilian Weishaupt
Browse files

Merge branch 'fix/fvgridgeometry-interface' into 'master'

[staggered] export the discretization method from the FVGridGeometry

See merge request !799
parents d9ff6d5e 3bc47e58
No related branches found
No related tags found
1 merge request!799[staggered] export the discretization method from the FVGridGeometry
......@@ -25,6 +25,7 @@
#define DUMUX_DISCRETIZATION_STAGGERED_FV_GRID_GEOMETRY
#include <dumux/discretization/basefvgridgeometry.hh>
#include <dumux/discretization/methods.hh>
namespace Dumux {
......@@ -65,6 +66,9 @@ class StaggeredFVGridGeometry<GV, true, Traits>
using ConnectivityMap = typename Traits::template ConnectivityMap<ThisType>;
public:
//! export discretization method
static constexpr DiscretizationMethods discretizationMethod = DiscretizationMethods::Staggered;
//! export the type of the fv element geometry (the local view type)
using LocalView = typename Traits::template LocalView<ThisType, true>;
//! export the type of sub control volume
......
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