Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / meshes / polyMesh / polyPatches / constraint / wedge / wedgePolyPatch.H
blob08f8678878578a13e8db7976fdcb7d6ccd067131
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::wedgePolyPatch
27 Description
28     Wedge front and back plane patch.
30 SourceFiles
31     wedgePolyPatch.C
33 \*---------------------------------------------------------------------------*/
35 #ifndef wedgePolyPatch_H
36 #define wedgePolyPatch_H
38 #include "polyPatch.H"
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
42 namespace Foam
45 /*---------------------------------------------------------------------------*\
46                       Class wedgePolyPatch Declaration
47 \*---------------------------------------------------------------------------*/
49 class wedgePolyPatch
51     public polyPatch
53     // Private data
55         //- Axis of the wedge
56         vector axis_;
58         //- Centre normal between the wedge boundaries
59         vector centreNormal_;
61         //- Normal to the patch
62         vector patchNormal_;
64         //- Face transformation tensor
65         tensor faceT_;
67         //- Neighbour-cell transformation tensor
68         tensor cellT_;
70         //- Calculate the above tensors
71         void initTransforms();
74 public:
76     //- Runtime type information
77     TypeName("wedge");
80     // Constructors
82         //- Construct from components
83         wedgePolyPatch
84         (
85             const word& name,
86             const label size,
87             const label start,
88             const label index,
89             const polyBoundaryMesh& bm
90         );
92         //- Construct from dictionary
93         wedgePolyPatch
94         (
95             const word& name,
96             const dictionary& dict,
97             const label index,
98             const polyBoundaryMesh& bm
99         );
101         //- Construct as copy, resetting the boundary mesh
102         wedgePolyPatch(const wedgePolyPatch&, const polyBoundaryMesh&);
104         //- Construct given the original patch and resetting the
105         //  face list and boundary mesh information
106         wedgePolyPatch
107         (
108             const wedgePolyPatch& pp,
109             const polyBoundaryMesh& bm,
110             const label index,
111             const label newSize,
112             const label newStart
113         );
115         //- Construct given the original patch and a map
116         wedgePolyPatch
117         (
118             const wedgePolyPatch& pp,
119             const polyBoundaryMesh& bm,
120             const label index,
121             const labelUList& mapAddressing,
122             const label newStart
123         );
125         //- Construct and return a clone, resetting the boundary mesh
126         virtual autoPtr<polyPatch> clone(const polyBoundaryMesh& bm) const
127         {
128             return autoPtr<polyPatch>(new wedgePolyPatch(*this, bm));
129         }
131         //- Construct and return a clone, resetting the face list
132         //  and boundary mesh
133         virtual autoPtr<polyPatch> clone
134         (
135             const polyBoundaryMesh& bm,
136             const label index,
137             const label newSize,
138             const label newStart
139         ) const
140         {
141             return autoPtr<polyPatch>
142             (
143                 new wedgePolyPatch(*this, bm, index, newSize, newStart)
144             );
145         }
147         //- Construct and return a clone, resetting the face list
148         //  and boundary mesh
149         virtual autoPtr<polyPatch> clone
150         (
151             const polyBoundaryMesh& bm,
152             const label index,
153             const labelUList& mapAddressing,
154             const label newStart
155         ) const
156         {
157             return autoPtr<polyPatch>
158             (
159                 new wedgePolyPatch(*this, bm, index, mapAddressing, newStart)
160             );
161         }
164     // Member functions
166         // Access
168             //- Return axis of the wedge
169             const vector& axis() const
170             {
171                 return axis_;
172             }
174             //- Return plane normal between the wedge boundaries
175             const vector& centreNormal() const
176             {
177                 return centreNormal_;
178             }
180             //- Return the normal to the patch
181             const vector& patchNormal() const
182             {
183                 return patchNormal_;
184             }
186             //- Return face transformation tensor
187             const tensor& faceT() const
188             {
189                 return faceT_;
190             }
192             //- Return neighbour-cell transformation tensor
193             const tensor& cellT() const
194             {
195                 return cellT_;
196             }
200 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
202 } // End namespace Foam
204 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
206 #endif
208 // ************************************************************************* //