mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
GIT: missed change (rebase) to ensight manifold cell handling (#2396)
This commit is contained in:
@ -31,6 +31,7 @@ License
|
||||
#include "polyMesh.H"
|
||||
#include "globalIndex.H"
|
||||
#include "globalMeshData.H"
|
||||
#include "manifoldCellsMeshObject.H"
|
||||
|
||||
// * * * * * * * * * * * * * 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
|
||||
if (Pstream::master())
|
||||
@ -180,7 +183,7 @@ void Foam::ensightCells::writePolysConnectivity
|
||||
);
|
||||
|
||||
toMaster
|
||||
<< mesh.cells()
|
||||
<< meshCells
|
||||
<< addr
|
||||
<< faces
|
||||
<< mesh.faceOwner();
|
||||
|
||||
Reference in New Issue
Block a user