mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
derive from wall patch instead of generic patch
This commit is contained in:
@ -36,7 +36,7 @@ SourceFiles
|
|||||||
#ifndef directMappedWallFvPatch_H
|
#ifndef directMappedWallFvPatch_H
|
||||||
#define directMappedWallFvPatch_H
|
#define directMappedWallFvPatch_H
|
||||||
|
|
||||||
#include "fvPatch.H"
|
#include "wallFvPatch.H"
|
||||||
#include "directMappedWallPolyPatch.H"
|
#include "directMappedWallPolyPatch.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -50,7 +50,7 @@ namespace Foam
|
|||||||
|
|
||||||
class directMappedWallFvPatch
|
class directMappedWallFvPatch
|
||||||
:
|
:
|
||||||
public fvPatch
|
public wallFvPatch
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -68,7 +68,7 @@ public:
|
|||||||
const fvBoundaryMesh& bm
|
const fvBoundaryMesh& bm
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
fvPatch(patch, bm)
|
wallFvPatch(patch, bm)
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -36,7 +36,7 @@ SourceFiles
|
|||||||
#ifndef directMappedWallPointPatch_H
|
#ifndef directMappedWallPointPatch_H
|
||||||
#define directMappedWallPointPatch_H
|
#define directMappedWallPointPatch_H
|
||||||
|
|
||||||
#include "facePointPatch.H"
|
#include "wallPointPatch.H"
|
||||||
#include "directMappedWallPolyPatch.H"
|
#include "directMappedWallPolyPatch.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -50,7 +50,7 @@ namespace Foam
|
|||||||
|
|
||||||
class directMappedWallPointPatch
|
class directMappedWallPointPatch
|
||||||
:
|
:
|
||||||
public facePointPatch
|
public wallPointPatch
|
||||||
{
|
{
|
||||||
|
|
||||||
public:
|
public:
|
||||||
@ -68,7 +68,7 @@ public:
|
|||||||
const pointBoundaryMesh& bm
|
const pointBoundaryMesh& bm
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
facePointPatch(patch, bm)
|
wallPointPatch(patch, bm)
|
||||||
{}
|
{}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user