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) {} };