From bf21eb151eef254e536697d5e9fb4134f2fa3f1c Mon Sep 17 00:00:00 2001 From: Will Bainbridge Date: Thu, 22 Sep 2022 17:12:58 +0100 Subject: [PATCH] nonConformalCyclicPointPatch: Inherit from cyclicPointPatch Resolves bug report https://bugs.openfoam.org/view.php?id=3892 --- .../nonConformalCyclic/nonConformalCyclicPointPatch.H | 6 +++--- .../nonConformalProcessorCyclicPointPatch.H | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/meshTools/nonConformal/pointPatches/nonConformalCyclic/nonConformalCyclicPointPatch.H b/src/meshTools/nonConformal/pointPatches/nonConformalCyclic/nonConformalCyclicPointPatch.H index 330ad7d238..297f1f5faa 100644 --- a/src/meshTools/nonConformal/pointPatches/nonConformalCyclic/nonConformalCyclicPointPatch.H +++ b/src/meshTools/nonConformal/pointPatches/nonConformalCyclic/nonConformalCyclicPointPatch.H @@ -38,7 +38,7 @@ See also #ifndef nonConformalCyclicPointPatch_H #define nonConformalCyclicPointPatch_H -#include "facePointPatch.H" +#include "cyclicPointPatch.H" #include "nonConformalCyclicPolyPatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -52,7 +52,7 @@ namespace Foam class nonConformalCyclicPointPatch : - public facePointPatch + public cyclicPointPatch { public: @@ -70,7 +70,7 @@ public: const pointBoundaryMesh& bm ) : - facePointPatch(patch, bm) + cyclicPointPatch(patch, bm) {} }; diff --git a/src/meshTools/nonConformal/pointPatches/nonConformalProcessorCyclic/nonConformalProcessorCyclicPointPatch.H b/src/meshTools/nonConformal/pointPatches/nonConformalProcessorCyclic/nonConformalProcessorCyclicPointPatch.H index ed6b967452..29cb508a3b 100644 --- a/src/meshTools/nonConformal/pointPatches/nonConformalProcessorCyclic/nonConformalProcessorCyclicPointPatch.H +++ b/src/meshTools/nonConformal/pointPatches/nonConformalProcessorCyclic/nonConformalProcessorCyclicPointPatch.H @@ -35,7 +35,7 @@ SourceFiles #ifndef nonConformalProcessorCyclicPointPatch_H #define nonConformalProcessorCyclicPointPatch_H -#include "facePointPatch.H" +#include "processorCyclicPointPatch.H" #include "nonConformalProcessorCyclicPolyPatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -49,7 +49,7 @@ namespace Foam class nonConformalProcessorCyclicPointPatch : - public facePointPatch + public processorCyclicPointPatch { public: @@ -67,7 +67,7 @@ public: const pointBoundaryMesh& bm ) : - facePointPatch(patch, bm) + processorCyclicPointPatch(patch, bm) {} };