diff --git a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C b/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C index 9ce34cda1c..fa51928f99 100644 --- a/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C +++ b/applications/utilities/mesh/manipulation/checkMesh/checkTopology.C @@ -67,8 +67,13 @@ Foam::label Foam::checkTopology { forAll(mesh.faceZones(), zoneI) { - if (mesh.faceZones()[zoneI].checkParallelSync(true)) + if (mesh.faceZones()[zoneI].checkParallelSync(false)) { + Info<< " ***FaceZone " << mesh.faceZones()[zoneI].name() + << " is not correctly synchronised" + << " acrosss coupled boundaries." + << " (coupled faces both" + << " present in set but with opposite flipmap)" << endl; noFailedChecks++; } }