Skip to content
Snippets Groups Projects
Commit f56249b9 authored by Mathis Kelm's avatar Mathis Kelm Committed by Timo Koch
Browse files

[boxdfm] store and expose indexInIntersection in scv(f)

parent 37bfe0a8
No related branches found
No related tags found
1 merge request!3744Remove scv/scvf corners
...@@ -93,6 +93,7 @@ public: ...@@ -93,6 +93,7 @@ public:
, elemLocalScvIdx_(scvIdx) , elemLocalScvIdx_(scvIdx)
, dofIndex_(dofIndex) , dofIndex_(dofIndex)
, facetIdx_(0) , facetIdx_(0)
, indexInIntersection_(0)
{ {
auto corners = geometryHelper.getScvCorners(scvIdx); auto corners = geometryHelper.getScvCorners(scvIdx);
dofPosition_ = corners[0]; dofPosition_ = corners[0];
...@@ -132,6 +133,7 @@ public: ...@@ -132,6 +133,7 @@ public:
, elemLocalScvIdx_(elemLocalScvIdx) , elemLocalScvIdx_(elemLocalScvIdx)
, dofIndex_(dofIndex) , dofIndex_(dofIndex)
, facetIdx_(elemLocalFacetIdx) , facetIdx_(elemLocalFacetIdx)
, indexInIntersection_(indexInIntersection)
{ {
auto corners = geometryHelper.getBoundaryScvfCorners(intersection.indexInInside(), indexInIntersection); auto corners = geometryHelper.getBoundaryScvfCorners(intersection.indexInInside(), indexInIntersection);
dofPosition_ = corners[0]; dofPosition_ = corners[0];
...@@ -166,6 +168,10 @@ public: ...@@ -166,6 +168,10 @@ public:
LocalIndexType facetIndexInElement() const LocalIndexType facetIndexInElement() const
{ assert(isFractureScv_); return facetIdx_; } { assert(isFractureScv_); return facetIdx_; }
//! The local vertex index in the intersection
LocalIndexType indexInsideIntersection() const
{ assert(isFractureScv_); return indexInIntersection_; }
//! The index of the dof this scv is embedded in //! The index of the dof this scv is embedded in
GridIndexType dofIndex() const GridIndexType dofIndex() const
{ return dofIndex_; } { return dofIndex_; }
...@@ -194,6 +200,7 @@ private: ...@@ -194,6 +200,7 @@ private:
// for fracture scvs only! // for fracture scvs only!
LocalIndexType facetIdx_; LocalIndexType facetIdx_;
LocalIndexType indexInIntersection_;
}; };
} // end namespace } // end namespace
......
...@@ -95,6 +95,7 @@ public: ...@@ -95,6 +95,7 @@ public:
, isFractureScvf_(false) , isFractureScvf_(false)
, boundaryFlag_{} , boundaryFlag_{}
, facetIdx_(0) , facetIdx_(0)
, indexInIntersection_(0)
{ {
auto corners = geometryHelper.getScvfCorners(scvfIndex); auto corners = geometryHelper.getScvfCorners(scvfIndex);
unitOuterNormal_ = geometryHelper.normal(corners, scvIndices_); unitOuterNormal_ = geometryHelper.normal(corners, scvIndices_);
...@@ -123,6 +124,7 @@ public: ...@@ -123,6 +124,7 @@ public:
, isFractureScvf_(false) , isFractureScvf_(false)
, boundaryFlag_{intersection} , boundaryFlag_{intersection}
, facetIdx_(0) , facetIdx_(0)
, indexInIntersection_(0)
{ {
auto corners = geometryHelper.getBoundaryScvfCorners(intersection.indexInInside(), indexInIntersection); auto corners = geometryHelper.getBoundaryScvfCorners(intersection.indexInInside(), indexInIntersection);
area_ = Dumux::convexPolytopeVolume<T::dim-1>( area_ = Dumux::convexPolytopeVolume<T::dim-1>(
...@@ -149,6 +151,7 @@ public: ...@@ -149,6 +151,7 @@ public:
, isFractureScvf_(true) , isFractureScvf_(true)
, boundaryFlag_{intersection} , boundaryFlag_{intersection}
, facetIdx_(intersection.indexInInside()) , facetIdx_(intersection.indexInInside())
, indexInIntersection_(indexInIntersection)
{ {
auto corners = geometryHelper.getFractureScvfCorners(intersection.indexInInside(), indexInIntersection); auto corners = geometryHelper.getFractureScvfCorners(intersection.indexInInside(), indexInIntersection);
// The area here is given in meters. In order to // The area here is given in meters. In order to
...@@ -200,6 +203,10 @@ public: ...@@ -200,6 +203,10 @@ public:
LocalIndexType facetIndexInElement() const LocalIndexType facetIndexInElement() const
{ assert(isFractureScvf_); return facetIdx_; } { assert(isFractureScvf_); return facetIdx_; }
//! The local edge index inside the intersection
LocalIndexType indexInIntersection() const
{ assert(isFractureScvf_); return indexInIntersection_; }
//! Returns the boundary flag //! Returns the boundary flag
typename BoundaryFlag::value_type boundaryFlag() const typename BoundaryFlag::value_type boundaryFlag() const
{ return boundaryFlag_.get(); } { return boundaryFlag_.get(); }
...@@ -232,6 +239,7 @@ private: ...@@ -232,6 +239,7 @@ private:
bool isFractureScvf_; bool isFractureScvf_;
BoundaryFlag boundaryFlag_; BoundaryFlag boundaryFlag_;
LocalIndexType facetIdx_; LocalIndexType facetIdx_;
LocalIndexType indexInIntersection_;
}; };
} // end namespace Dumux } // end namespace Dumux
......
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