nonConformalCyclicPointPatch: Inherit from cyclicPointPatch
Resolves bug report https://bugs.openfoam.org/view.php?id=3892
This commit is contained in:
@ -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)
|
||||
{}
|
||||
};
|
||||
|
||||
|
||||
@ -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)
|
||||
{}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user