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

[common] Introduce trivial intersection mapper

parent c0230eda
No related branches found
No related tags found
Loading
...@@ -33,6 +33,36 @@ ...@@ -33,6 +33,36 @@
namespace Dumux namespace Dumux
{ {
template<class TypeTag>
class ConformingGridIntersectionMapper
{
using GridView = typename GET_PROP_TYPE(TypeTag, GridView);
using Element = typename GridView::template Codim<0>::Entity;
using IndexType = unsigned int;
static constexpr int codimIntersection = 1;
public:
ConformingGridIntersectionMapper(const GridView& gridView) : gridView_(gridView) { }
void update()
{}
//! The total number of intersections
std::size_t numIntersections() const
{
return gridView_.size(1);
}
IndexType globalIntersectionIndex(const Element& element, const IndexType localFaceIdx) const
{
return gridView_.indexSet().subIndex(element, localFaceIdx, codimIntersection);
}
private:
const GridView gridView_;
};
/*! /*!
* \brief defines an intersection mapper for mapping of global DOFs assigned * \brief defines an intersection mapper for mapping of global DOFs assigned
* to faces which also works for adaptive grids. * to faces which also works for adaptive grids.
......
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