From a85d8b54bdef0aa5174901ae2fcc9c7056ca27e6 Mon Sep 17 00:00:00 2001 From: mattijs Date: Thu, 10 Sep 2009 12:23:08 +0100 Subject: [PATCH] derive from wall patch instead of generic patch --- .../fvPatches/derived/directMapped/directMappedWallFvPatch.H | 8 ++++---- .../directMappedPointPatch/directMappedWallPointPatch.H | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/src/finiteVolume/fvMesh/fvPatches/derived/directMapped/directMappedWallFvPatch.H b/src/finiteVolume/fvMesh/fvPatches/derived/directMapped/directMappedWallFvPatch.H index 4be7eed5..be979c91 100644 --- a/src/finiteVolume/fvMesh/fvPatches/derived/directMapped/directMappedWallFvPatch.H +++ b/src/finiteVolume/fvMesh/fvPatches/derived/directMapped/directMappedWallFvPatch.H @@ -36,7 +36,7 @@ SourceFiles #ifndef directMappedWallFvPatch_H #define directMappedWallFvPatch_H -#include "fvPatch.H" +#include "wallFvPatch.H" #include "directMappedWallPolyPatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -45,12 +45,12 @@ namespace Foam { /*---------------------------------------------------------------------------*\ - Class directMappedWallFvPatch Declaration + Class directMappedWallFvPatch Declaration \*---------------------------------------------------------------------------*/ class directMappedWallFvPatch : - public fvPatch + public wallFvPatch { public: @@ -68,7 +68,7 @@ public: const fvBoundaryMesh& bm ) : - fvPatch(patch, bm) + wallFvPatch(patch, bm) {} }; diff --git a/src/meshTools/directMapped/directMappedPointPatch/directMappedWallPointPatch.H b/src/meshTools/directMapped/directMappedPointPatch/directMappedWallPointPatch.H index 28bb8771..0c33de30 100644 --- a/src/meshTools/directMapped/directMappedPointPatch/directMappedWallPointPatch.H +++ b/src/meshTools/directMapped/directMappedPointPatch/directMappedWallPointPatch.H @@ -36,7 +36,7 @@ SourceFiles #ifndef directMappedWallPointPatch_H #define directMappedWallPointPatch_H -#include "facePointPatch.H" +#include "wallPointPatch.H" #include "directMappedWallPolyPatch.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // @@ -50,7 +50,7 @@ namespace Foam class directMappedWallPointPatch : - public facePointPatch + public wallPointPatch { public: @@ -68,7 +68,7 @@ public: const pointBoundaryMesh& bm ) : - facePointPatch(patch, bm) + wallPointPatch(patch, bm) {} }; -- 2.11.4.GIT