BUG: createBaffles.C: converting coupled faces into baffles

This commit is contained in:
mattijs
2012-01-13 11:58:27 +00:00
parent 4510ca38a4
commit 6a6986b4ce

View File

@ -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)