From 8cdb43115912fffb3d24f77bc31601cba0f6c199 Mon Sep 17 00:00:00 2001 From: andy Date: Mon, 24 Feb 2014 09:09:54 +0000 Subject: [PATCH] BUG: faceSource - incorrect treatment for cyclic - mantis #1092 #1181 --- .../field/fieldValues/faceSource/faceSource.C | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/postProcessing/functionObjects/field/fieldValues/faceSource/faceSource.C b/src/postProcessing/functionObjects/field/fieldValues/faceSource/faceSource.C index ea38597a..ba1e110c 100644 --- a/src/postProcessing/functionObjects/field/fieldValues/faceSource/faceSource.C +++ b/src/postProcessing/functionObjects/field/fieldValues/faceSource/faceSource.C @@ -188,11 +188,7 @@ void Foam::fieldValues::faceSource::setPatchFaces() const polyPatch& pp = mesh().boundaryMesh()[patchId]; label nFaces = pp.size(); - if (isA(pp)) - { - nFaces /= 2; - } - else if (isA(pp)) + if (isA(pp)) { nFaces = 0; }