Skip to content
Snippets Groups Projects
Commit a9888b21 authored by Henry Weller's avatar Henry Weller
Browse files

patchInteractionDataList: treat cyclicAMIPolyPatch as a coupled patch

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1949
parent 97301ef7
Branches
Tags
No related merge requests found
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
========= | ========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | \\ / O peration |
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation | \\/ M anipulation |
------------------------------------------------------------------------------- -------------------------------------------------------------------------------
License License
...@@ -26,6 +26,7 @@ License ...@@ -26,6 +26,7 @@ License
#include "patchInteractionDataList.H" #include "patchInteractionDataList.H"
#include "stringListOps.H" #include "stringListOps.H"
#include "emptyPolyPatch.H" #include "emptyPolyPatch.H"
#include "cyclicAMIPolyPatch.H"
// * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * * //
...@@ -73,6 +74,7 @@ Foam::patchInteractionDataList::patchInteractionDataList ...@@ -73,6 +74,7 @@ Foam::patchInteractionDataList::patchInteractionDataList
( (
!pp.coupled() !pp.coupled()
&& !isA<emptyPolyPatch>(pp) && !isA<emptyPolyPatch>(pp)
&& !isA<cyclicAMIPolyPatch>(pp)
&& applyToPatch(pp.index()) < 0 && applyToPatch(pp.index()) < 0
) )
{ {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment