mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: Corrected mapped point patch definition
This commit is contained in:
@ -35,8 +35,9 @@ SourceFiles
|
||||
#ifndef mappedPointPatch_H
|
||||
#define mappedPointPatch_H
|
||||
|
||||
#include "wallPointPatch.H"
|
||||
#include "mappedWallPolyPatch.H"
|
||||
#include "facePointPatch.H"
|
||||
#include "mappedPolyPatch.H"
|
||||
#include "addToRunTimeSelectionTable.H"
|
||||
|
||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||
|
||||
@ -49,13 +50,13 @@ namespace Foam
|
||||
|
||||
class mappedPointPatch
|
||||
:
|
||||
public wallPointPatch
|
||||
public facePointPatch
|
||||
{
|
||||
|
||||
public:
|
||||
|
||||
//- Runtime type information
|
||||
TypeName(mappedWallPolyPatch::typeName_());
|
||||
TypeName(mappedPolyPatch::typeName_());
|
||||
|
||||
|
||||
// Constructors
|
||||
@ -67,7 +68,7 @@ public:
|
||||
const pointBoundaryMesh& bm
|
||||
)
|
||||
:
|
||||
wallPointPatch(patch, bm)
|
||||
facePointPatch(patch, bm)
|
||||
{}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user