nonConformalCyclicPointPatch: Inherit from cyclicPointPatch

Resolves bug report https://bugs.openfoam.org/view.php?id=3892
This commit is contained in:
Will Bainbridge
2022-09-22 17:12:58 +01:00
parent 53f3bc6fdd
commit bf21eb151e
2 changed files with 6 additions and 6 deletions

View File

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

View File

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