From a9888b215d610f11c7aa0f305143323fab3aa04b Mon Sep 17 00:00:00 2001 From: Henry Weller <http://cfd.direct> Date: Sun, 3 Jan 2016 15:39:44 +0000 Subject: [PATCH] patchInteractionDataList: treat cyclicAMIPolyPatch as a coupled patch Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1949 --- .../LocalInteraction/patchInteractionDataList.C | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionDataList.C b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionDataList.C index 30aa85357f8..4c7739a0700 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionDataList.C +++ b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/patchInteractionDataList.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -26,6 +26,7 @@ License #include "patchInteractionDataList.H" #include "stringListOps.H" #include "emptyPolyPatch.H" +#include "cyclicAMIPolyPatch.H" // * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * // @@ -73,6 +74,7 @@ Foam::patchInteractionDataList::patchInteractionDataList ( !pp.coupled() && !isA<emptyPolyPatch>(pp) + && !isA<cyclicAMIPolyPatch>(pp) && applyToPatch(pp.index()) < 0 ) { -- GitLab