From 619089e8867f5d85e384b489589f306668bb78fe Mon Sep 17 00:00:00 2001 From: Vuko Vukcevic Date: Sat, 8 Dec 2018 13:03:43 +0100 Subject: [PATCH] Bugfix in pointPatchInterpolate Regarding boundary condition update for non coupled boundaries of point fields. Author: Dario Zivkovic. --- .../pointPatchInterpolation/pointPatchInterpolate.C | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/finiteVolume/interpolation/volPointInterpolation/pointPatchInterpolation/pointPatchInterpolate.C b/src/finiteVolume/interpolation/volPointInterpolation/pointPatchInterpolation/pointPatchInterpolate.C index e04eabc26..d429df7c3 100644 --- a/src/finiteVolume/interpolation/volPointInterpolation/pointPatchInterpolation/pointPatchInterpolate.C +++ b/src/finiteVolume/interpolation/volPointInterpolation/pointPatchInterpolation/pointPatchInterpolate.C @@ -180,9 +180,15 @@ void pointPatchInterpolation::interpolate pf.internalField() ); } + else + { + // Bugfix: Need to update ordinary boundary conditions. + // Dario Zivkovic, 8/Dec/2018. + pf.boundaryField()[patchi].evaluate(); + } } - // Coupled boundaries already updated. Nothing to do. VV, 4/Dec/2017. + // All boundaries already updated. Nothing to do. VV, 4/Dec/2017. if (debug) {