GIT: missed change (rebase) to ensight manifold cell handling (#2396)

This commit is contained in:
Mark Olesen
2022-03-13 22:52:49 +01:00
parent a22784ef52
commit 46a1e7e21e

View File

@ -31,6 +31,7 @@ License
#include "polyMesh.H" #include "polyMesh.H"
#include "globalIndex.H" #include "globalIndex.H"
#include "globalMeshData.H" #include "globalMeshData.H"
#include "manifoldCellsMeshObject.H"
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
@ -135,6 +136,8 @@ void Foam::ensightCells::writePolysConnectivity
} }
} }
///const cellList& meshCells = mesh.cells();
const cellList& meshCells = manifoldCellsMeshObject::New(mesh).cells();
// List of points id for each face of the above list // List of points id for each face of the above list
if (Pstream::master()) if (Pstream::master())
@ -180,7 +183,7 @@ void Foam::ensightCells::writePolysConnectivity
); );
toMaster toMaster
<< mesh.cells() << meshCells
<< addr << addr
<< faces << faces
<< mesh.faceOwner(); << mesh.faceOwner();