mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: conformalVoronoiMeshCalcDualMesh: updated message
This commit is contained in:
@ -129,11 +129,7 @@ void Foam::conformalVoronoiMesh::calcDualMesh
|
|||||||
|
|
||||||
PackedBoolList boundaryPts(number_of_cells(), false);
|
PackedBoolList boundaryPts(number_of_cells(), false);
|
||||||
|
|
||||||
indexDualVertices
|
indexDualVertices(points, boundaryPts);
|
||||||
(
|
|
||||||
points,
|
|
||||||
boundaryPts
|
|
||||||
);
|
|
||||||
|
|
||||||
{
|
{
|
||||||
// Ideally requires a no-risk face filtering to get rid of zero area
|
// Ideally requires a no-risk face filtering to get rid of zero area
|
||||||
@ -191,11 +187,7 @@ void Foam::conformalVoronoiMesh::calcDualMesh
|
|||||||
// Reindexing the Delaunay cells and regenerating the
|
// Reindexing the Delaunay cells and regenerating the
|
||||||
// points resets the mesh to the starting condition.
|
// points resets the mesh to the starting condition.
|
||||||
|
|
||||||
indexDualVertices
|
indexDualVertices(points, boundaryPts);
|
||||||
(
|
|
||||||
points,
|
|
||||||
boundaryPts
|
|
||||||
);
|
|
||||||
|
|
||||||
{
|
{
|
||||||
Info<< nl << "Merging close points" << endl;
|
Info<< nl << "Merging close points" << endl;
|
||||||
@ -642,10 +634,12 @@ Foam::label Foam::conformalVoronoiMesh::mergeCloseDualVertices
|
|||||||
Info<< "mergeCloseDualVertices:"
|
Info<< "mergeCloseDualVertices:"
|
||||||
<< " coincident distance:" << coincidentDistanceSqr
|
<< " coincident distance:" << coincidentDistanceSqr
|
||||||
<< " closenessTolerance:" << closenessTolerance << endl
|
<< " closenessTolerance:" << closenessTolerance << endl
|
||||||
<< " identical points : "
|
<< " zero-length edges : "
|
||||||
<< returnReduce(nIdentical, sumOp<label>()) << endl
|
<< returnReduce(nIdentical, sumOp<label>()) << endl
|
||||||
<< " processor edges : "
|
<< " protected processor edges : "
|
||||||
<< returnReduce(nProcEdge, sumOp<label>()) << endl
|
<< returnReduce(nProcEdge, sumOp<label>()) << endl
|
||||||
|
<< " collapsed edges : "
|
||||||
|
<< returnReduce(nPtsMerged, sumOp<label>()) << endl
|
||||||
<< endl;
|
<< endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user