Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / utilities / mesh / generation / extrude / extrudeMesh / extrudedMesh / extrudedMesh.H
blob2cdc30c81c78d53c09ca74734beb14793e3f6faa
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2004-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software: you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by
13     the Free Software Foundation, either version 3 of the License, or
14     (at your option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM.  If not, see <http://www.gnu.org/licenses/>.
24 Class
25     Foam::extrudedMesh
27 Description
29 SourceFiles
30     extrudedMesh.C
32 \*---------------------------------------------------------------------------*/
34 #ifndef extrudedMesh_H
35 #define extrudedMesh_H
37 #include "polyMesh.H"
38 #include "extrudeModel.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 /*---------------------------------------------------------------------------*\
46                            Class extrudedMesh Declaration
47 \*---------------------------------------------------------------------------*/
49 class extrudedMesh
51     public polyMesh
53     // Private data
55         const extrudeModel& model_;
58     // Private Member Functions
60         //- Do edge and face use points in same order?
61         static bool sameOrder(const face&, const edge&);
63         //- Construct and return the extruded mesh points
64         template<class Face, template<class> class FaceList, class PointField>
65         Xfer<pointField> extrudedPoints
66         (
67             const PrimitivePatch<Face, FaceList, PointField>& extrudePatch,
68             const extrudeModel&
69         );
71         //- Construct and return the extruded mesh faces
72         template<class Face, template<class> class FaceList, class PointField>
73         Xfer<faceList> extrudedFaces
74         (
75             const PrimitivePatch<Face, FaceList, PointField>& extrudePatch,
76             const extrudeModel&
77         );
79         //- Construct and return the extruded mesh cells
80         template<class Face, template<class> class FaceList, class PointField>
81         Xfer<cellList> extrudedCells
82         (
83             const PrimitivePatch<Face, FaceList, PointField>& extrudePatch,
84             const extrudeModel&
85         );
88         //- Disallow default bitwise copy construct
89         extrudedMesh(const extrudedMesh&);
91         //- Disallow default bitwise assignment
92         void operator=(const extrudedMesh&);
95 public:
97     // Constructors
99         //- Construct from the primitivePatch to extrude
100         template<class Face, template<class> class FaceList, class PointField>
101         extrudedMesh
102         (
103             const IOobject&,
104             const PrimitivePatch<Face, FaceList, PointField>& extrudePatch,
105             const extrudeModel&
106         );
110 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
112 } // End namespace Foam
114 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
116 #ifdef NoRepository
117 #   include "extrudedMesh.C"
118 #else
119 #   ifdef xlC
120 #   pragma implementation("extrudedMesh.C")
121 #   endif
122 #endif
124 #endif
126 // ************************************************************************* //