Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / meshes / meshShapes / cellModel / cellModelI.H
blob91d1ed54caac5cf00d81b10f8e5edefd7ddef8f5
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 Description
26 \*---------------------------------------------------------------------------*/
28 #include "error.H"
29 #include "cellModel.H"
31 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 namespace Foam
36 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
38 inline const word& cellModel::name() const
40     return name_;
44 inline label cellModel::index() const
46     return index_;
50 inline label cellModel::nPoints() const
52     return nPoints_;
56 inline label cellModel::nEdges() const
58     return edges_.size();
62 inline label cellModel::nFaces() const
64     return faces_.size();
68 //  Return the faces of a cellModel by untangling the geometry
69 //  supplied in terms of the face labels
70 inline edgeList cellModel::edges(const labelList& pointLabels) const
72     edgeList e(edges_.size());
74     // Translate model lebels into global labels
75     forAll(edges_, edgeI)
76     {
77          e[edgeI] =
78              edge
79              (
80                  pointLabels[edges_[edgeI].start()],
81                  pointLabels[edges_[edgeI].end()]
82              );
83     }
85     return e;
89 // Return a raw list of model faces
90 inline const faceList& cellModel::modelFaces() const
92     return faces_;
95 //  Return the faces of a cellModel by untangling the geometry
96 //  supplied in terms of the face labels
97 inline faceList cellModel::faces(const labelList& pointLabels) const
99     faceList f(faces_.size());
101     // Translate model lebels into global labels
102     forAll(faces_, faceI)
103     {
104          const labelList& curModelLabels = faces_[faceI];
106          face& curFace = f[faceI];
108          curFace.setSize(curModelLabels.size());
110          forAll(curModelLabels, labelI)
111          {
112              curFace[labelI] = pointLabels[curModelLabels[labelI]];
113          }
114     }
116     return f;
120 // * * * * * * * * * * * * * * * Friend Operators  * * * * * * * * * * * * * //
122 // Equality operator: true => ptr to models are equal !
123 inline bool operator==(const cellModel& m1, const cellModel& m2)
125     return (&m1 == &m2);
128 // Inequality operator: true => ptr to models are not equal !
129 inline bool operator!=(const cellModel& m1, const cellModel& m2)
131     return (&m1 != &m2);
135 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 } // End namespace Foam
139 // ************************************************************************* //