From 6a6986b4ce4fafd91279d5b9f963bbfdabe9a7dd Mon Sep 17 00:00:00 2001 From: mattijs Date: Fri, 13 Jan 2012 11:58:27 +0000 Subject: [PATCH] BUG: createBaffles.C: converting coupled faces into baffles --- .../mesh/manipulation/createBaffles/createBaffles.C | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/applications/utilities/mesh/manipulation/createBaffles/createBaffles.C b/applications/utilities/mesh/manipulation/createBaffles/createBaffles.C index 01c9707958..cd0c02ce64 100644 --- a/applications/utilities/mesh/manipulation/createBaffles/createBaffles.C +++ b/applications/utilities/mesh/manipulation/createBaffles/createBaffles.C @@ -290,18 +290,6 @@ int main(int argc, char *argv[]) // Whether first use of face (modify) or consecutive (add) PackedBoolList modifiedFace(mesh.nFaces()); - // Never modify coupled faces - forAll(patches, patchI) - { - const polyPatch& pp = patches[patchI]; - if (pp.coupled()) - { - forAll(pp, i) - { - modifiedFace[pp.start()+i] = 1; - } - } - } label nModified = 0; forAll(newMasterPatches, i)