From ca8feb2359978e696f64c8427a5cc3249a333147 Mon Sep 17 00:00:00 2001 From: mattijs <mattijs> Date: Tue, 31 Dec 2013 11:26:28 +0000 Subject: [PATCH] BUG: polyPatch: clear underlying primitivePatch upon changes --- src/OpenFOAM/meshes/polyMesh/polyPatches/polyPatch/polyPatch.C | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/OpenFOAM/meshes/polyMesh/polyPatches/polyPatch/polyPatch.C b/src/OpenFOAM/meshes/polyMesh/polyPatches/polyPatch/polyPatch.C index a10563c3d1b..643e06a4798 100644 --- a/src/OpenFOAM/meshes/polyMesh/polyPatches/polyPatch/polyPatch.C +++ b/src/OpenFOAM/meshes/polyMesh/polyPatches/polyPatch/polyPatch.C @@ -2,7 +2,7 @@ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | - \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation + \\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License @@ -62,6 +62,7 @@ void Foam::polyPatch::movePoints(PstreamBuffers&, const pointField& p) void Foam::polyPatch::updateMesh(PstreamBuffers&) { clearAddressing(); + primitivePatch::clearOut(); } -- GitLab