Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / meshes / meshShapes / cell / cell.H
blobe95770bbe7ca3c08335707014cd5b75a1cd3bdc0
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::cell
27 Description
28     A cell is defined as a list of faces with extra functionality
30 SourceFiles
31     cellI.H
33 \*---------------------------------------------------------------------------*/
35 #ifndef cell_H
36 #define cell_H
38 #include "faceList.H"
39 #include "oppositeFace.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 // Forward declaration of friend functions and operators
48 class cell;
49 bool operator==(const cell&, const cell&);
50 inline bool operator!=(const cell&, const cell&);
53 /*---------------------------------------------------------------------------*\
54                            Class cell Declaration
55 \*---------------------------------------------------------------------------*/
57 class cell
59     public labelList
62 public:
64     // Static data members
66         static const char* const typeName;
69     // Constructors
71         //- Construct null
72         inline cell();
74         //- Construct given size
75         explicit inline cell(label);
77         //- Construct from list of labels
78         explicit inline cell(const labelUList&);
80         //- Construct by transferring the parameter contents
81         explicit inline cell(const Xfer<labelList>&);
83         //- Construct from Istream
84         inline cell(Istream&);
87     // Member Functions
89         //- Return number of faces
90         inline label nFaces() const;
92         //- Return labels of cell vertices
93         labelList labels(const faceUList&) const;
95         //- Return the cell vertices
96         pointField points(const faceUList&, const pointField&) const;
98         //- Return cell edges
99         edgeList edges(const faceUList&) const;
101         //- Return index of opposite face
102         label opposingFaceLabel
103         (
104             const label masterFaceLabel,
105             const faceUList& meshFaces
106         ) const;
108         //- Return opposite face oriented the same way as the master face
109         oppositeFace opposingFace
110         (
111             const label masterFaceLabel,
112             const faceUList& meshFaces
113         ) const;
116         // Instructions for centre and mag:
117         // When one wants to access the cell centre and magnitude, the
118         // functionality on the mesh level should be used in preference to the
119         // functions provided here. They do not rely to the functionality
120         // implemented here, provide additional checking and are more efficient.
121         // The cell::centre and cell::mag functions may be removed in the
122         // future.
124         //- Returns cell centre
125         point centre(const pointField&, const faceUList&) const;
127         //- Returns cell volume
128         scalar mag(const pointField&, const faceUList&) const;
131     // Friend Operators
133         friend bool operator==(const cell&, const cell&);
134         friend bool operator!=(const cell&, const cell&);
138 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
140 } // End namespace Foam
142 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
144 #include "cellI.H"
146 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
148 #endif
150 // ************************************************************************* //