Skip to content
Snippets Groups Projects
Commit 5f23da34 authored by Dr. Felix Tobias Schindler's avatar Dr. Felix Tobias Schindler
Browse files

[walker.apply-on] add CustomBoundaryIntersections filter

parent a5c3dc89
No related branches found
No related tags found
No related merge requests found
...@@ -343,6 +343,47 @@ private: ...@@ -343,6 +343,47 @@ private:
}; // class BoundaryIntersections }; // class BoundaryIntersections
template <class GridLayerImp>
class CustomBoundaryIntersections : public WhichIntersection<GridLayerImp>
{
typedef WhichIntersection<GridLayerImp> BaseType;
public:
using typename BaseType::GridLayerType;
using typename BaseType::IntersectionType;
/**
* \attention Takes ownership of boundary_type, do not delete manually!
*/
explicit CustomBoundaryIntersections(const BoundaryInfo<IntersectionType>& boundary_info, BoundaryType* boundary_type)
: boundary_info_(boundary_info)
, boundary_type_(boundary_type)
{
}
explicit CustomBoundaryIntersections(const BoundaryInfo<IntersectionType>& boundary_info,
const std::shared_ptr<BoundaryType>& boundary_type)
: boundary_info_(boundary_info)
, boundary_type_(boundary_type)
{
}
WhichIntersection<GridLayerType>* copy() const override final
{
return new CustomBoundaryIntersections<GridLayerType>(boundary_info_, boundary_type_);
}
bool apply_on(const GridLayerType& /*grid_layer*/, const IntersectionType& intersection) const override final
{
return boundary_info_.type(intersection) == *boundary_type_;
}
protected:
const BoundaryInfo<IntersectionType>& boundary_info_;
const std::shared_ptr<BoundaryType> boundary_type_;
}; // class CustomBoundaryIntersections
template <class GridLayerImp> template <class GridLayerImp>
class DirichletIntersections class DirichletIntersections
: public internal::WhichIntersectionBase<GridLayerImp, DirichletIntersections<GridLayerImp>, true> : public internal::WhichIntersectionBase<GridLayerImp, DirichletIntersections<GridLayerImp>, true>
......
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