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

[test] Use RotationalExtrusion in 2p dome test

parent 94ad63e1
No related branches found
No related tags found
1 merge request!2188New concept for extrusion of grid geometries
......@@ -25,7 +25,7 @@
#include <dumux/common/properties.hh>
#include <dumux/discretization/box.hh>
#include <dumux/discretization/rotationsymmetricgridgeometrytraits.hh>
#include <dumux/discretization/extrusion.hh>
#include <dumux/porousmediumflow/2p/model.hh>
......@@ -82,7 +82,7 @@ struct GridGeometry<TypeTag, TTag::TwoPRotationalSymmetryDome>
static constexpr bool enableCache = getPropValue<TypeTag, Properties::EnableGridGeometryCache>();
using GridView = typename GetPropType<TypeTag, Properties::Grid>::LeafGridView;
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
using Traits = RotationSymmetricGridGeometryTraits<BoxDefaultGridGeometryTraits<GridView>, RotationPolicy::toroid>;
struct Traits : public BoxDefaultGridGeometryTraits<GridView> { using Extrusion = RotationalExtrusion<0>; };
using type = BoxFVGridGeometry<Scalar, GridView, enableCache, Traits>;
};
......
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