relocated PrimitivePatchTools -> PatchTools

This commit is contained in:
Mark Olesen
2009-01-29 08:10:02 +01:00
parent 7c739978b1
commit 69f8c3b3a1
10 changed files with 27 additions and 31 deletions

View File

@ -26,21 +26,14 @@ Class
Foam::polyPatch Foam::polyPatch
Description Description
A patch is a list of labels, which address the faces in the global face A patch is a list of labels that address the faces in the global face list.
list. Based on the global faces, the patch can calculate its own edge.
The patch can calculate its own edges based on the global faces.
Patch also contains all addressing between the faces. Patch also contains all addressing between the faces.
SourceFiles SourceFiles
polyPatch.C polyPatch.C
calcPolyPatchAddressing.C
calcPolyPatchFaceCells.C
calcPolyPatchIntBdryEdges.C
calcPolyPatchMeshEdges.C
calcPolyPatchMeshData.C
calcPolyPatchPointAddressing.C
clearPolyPatch.C
newPolyPatch.C newPolyPatch.C
polyPatchTools.C
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
@ -59,10 +52,9 @@ namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
class polyBoundaryMesh;
// Forward declaration of friend functions and operators // Forward declaration of friend functions and operators
class polyBoundaryMesh;
class polyPatch; class polyPatch;
Ostream& operator<<(Ostream&, const polyPatch&); Ostream& operator<<(Ostream&, const polyPatch&);

View File

@ -24,12 +24,12 @@ License
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "PrimitivePatchTools.H" #include "PatchTools.H"
#include "PrimitivePatchToolsCheck.C" #include "PatchToolsCheck.C"
#include "PrimitivePatchToolsEdgeOwner.C" #include "PatchToolsEdgeOwner.C"
#include "PrimitivePatchToolsSearch.C" #include "PatchToolsSearch.C"
#include "PrimitivePatchToolsSortEdges.C" #include "PatchToolsSortEdges.C"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -23,18 +23,24 @@ License
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Class Class
Foam::PrimitivePatchTools Foam::PatchTools
Description Description
A collect of tools for searching, sort PrimitivePatch information. A collection of tools for searching, sorting PrimitivePatch information.
The class could also be extended to include more that just static methods.
SourceFiles SourceFiles
PrimitivePatchTools.C PatchTools.C
PatchToolsCheck.C
PatchToolsEdgeOwner.C
PatchToolsSearch.C
PatchToolsSortEdges.C
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#ifndef PrimitivePatchTools_H #ifndef PatchTools_H
#define PrimitivePatchTools_H #define PatchTools_H
#include "PrimitivePatch.H" #include "PrimitivePatch.H"
#include "HashSet.H" #include "HashSet.H"
@ -171,7 +177,7 @@ public:
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository #ifdef NoRepository
# include "PrimitivePatchTools.C" # include "PatchTools.C"
#endif #endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "PrimitivePatchTools.H" #include "PatchTools.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "PrimitivePatchTools.H" #include "PatchTools.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -27,7 +27,7 @@ Description
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "PrimitivePatchTools.H" #include "PatchTools.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/ \*---------------------------------------------------------------------------*/
#include "PrimitivePatchTools.H" #include "PatchTools.H"
#include "SortableList.H" #include "SortableList.H"
#include "transform.H" #include "transform.H"

View File

@ -37,7 +37,7 @@ SourceFiles
#define BasicMeshedSurface_H #define BasicMeshedSurface_H
#include "PrimitivePatch.H" #include "PrimitivePatch.H"
#include "PrimitivePatchTools.H" #include "PatchTools.H"
#include "pointField.H" #include "pointField.H"
#include "face.H" #include "face.H"
#include "triFace.H" #include "triFace.H"

View File

@ -26,7 +26,6 @@ License
#include "MeshedSurface.H" #include "MeshedSurface.H"
#include "UnsortedMeshedSurface.H" #include "UnsortedMeshedSurface.H"
#include "PrimitivePatchTools.H"
#include "IFstream.H" #include "IFstream.H"
#include "OFstream.H" #include "OFstream.H"
#include "Time.H" #include "Time.H"

View File

@ -26,7 +26,6 @@ License
#include "MeshedSurface.H" #include "MeshedSurface.H"
#include "UnsortedMeshedSurface.H" #include "UnsortedMeshedSurface.H"
#include "PrimitivePatchTools.H"
#include "IFstream.H" #include "IFstream.H"
#include "OFstream.H" #include "OFstream.H"
#include "Time.H" #include "Time.H"