Skip to content
Snippets Groups Projects
Commit cff9c7b6 authored by Andrew Heather's avatar Andrew Heather
Browse files

ENH: singleCellFvMesh - added access to patchFaceAgglomeration

parent ef476621
No related branches found
No related tags found
Loading
...@@ -29,7 +29,7 @@ Class ...@@ -29,7 +29,7 @@ Class
Description Description
fvMesh as subset of other mesh. Consists of one cell and all original fvMesh as subset of other mesh. Consists of one cell and all original
bounday faces. Useful when manipulating boundary data. Single internal boundary faces. Useful when manipulating boundary data. Single internal
cell only needed to be able to manipulate in a standard way. cell only needed to be able to manipulate in a standard way.
SourceFiles SourceFiles
...@@ -60,6 +60,7 @@ class singleCellFvMesh ...@@ -60,6 +60,7 @@ class singleCellFvMesh
{ {
// Private Data // Private Data
//- Fine patch face to agglomeration index addressing
const labelListIOList patchFaceAgglomeration_; const labelListIOList patchFaceAgglomeration_;
//- From patch faces back to agglomeration or fine mesh //- From patch faces back to agglomeration or fine mesh
...@@ -184,6 +185,12 @@ public: ...@@ -184,6 +185,12 @@ public:
return !patchFaceAgglomeration_.empty(); return !patchFaceAgglomeration_.empty();
} }
//- Fine patch face to agglomeration index addressing
const labelListList& patchFaceAgglomeration() const noexcept
{
return patchFaceAgglomeration_;
}
//- From patchFace on this back to original mesh or agglomeration //- From patchFace on this back to original mesh or agglomeration
const labelListList& patchFaceMap() const noexcept const labelListList& patchFaceMap() const noexcept
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment