Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / dynamicMesh / meshCut / wallLayerCells / wallNormalInfo / wallNormalInfoI.H
blobee451958ae85c48caeab1406407376236bca510b
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 \*---------------------------------------------------------------------------*/
26 #include "polyMesh.H"
28 // * * * * * * * * * * * * * Private Member Functions  * * * * * * * * * * * //
30 // Update this with w2 if not yet set.
31 template<class TrackingData>
32 inline bool Foam::wallNormalInfo::update
34     const wallNormalInfo& w2,
35     TrackingData& td
38     if (!w2.valid(td))
39     {
40         FatalErrorIn
41         (
42             "wallNormalInfo::update(const wallNormalInfo&)"
43         ) << "Problem: w2 is not valid" << abort(FatalError);
45         return false;
46     }
47     else if (valid(td))
48     {
49         // our already set. Stop any transfer
50         return false;
51     }
52     else
53     {
54         normal_ = w2.normal();
56         return true;
57     }
61 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
63 // Null constructor
64 inline Foam::wallNormalInfo::wallNormalInfo()
66     normal_(point::max)
70 // Construct from normal
71 inline Foam::wallNormalInfo::wallNormalInfo(const vector& normal)
73     normal_(normal)
77 // Construct as copy
78 inline Foam::wallNormalInfo::wallNormalInfo(const wallNormalInfo& wpt)
80     normal_(wpt.normal())
84 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
86 inline const Foam::vector& Foam::wallNormalInfo::normal() const
88     return normal_;
92 template<class TrackingData>
93 inline bool Foam::wallNormalInfo::valid(TrackingData& td) const
95     return normal_ != point::max;
99 // No geometric data so never any problem on cyclics
100 template<class TrackingData>
101 inline bool Foam::wallNormalInfo::sameGeometry
103     const polyMesh&,
104     const wallNormalInfo& w2,
105     const scalar tol,
106     TrackingData& td
107 ) const
109     return true;
113 // No geometric data.
114 template<class TrackingData>
115 inline void Foam::wallNormalInfo::leaveDomain
117     const polyMesh&,
118     const polyPatch& patch,
119     const label patchFaceI,
120     const point& faceCentre,
121     TrackingData& td
126 // No geometric data.
127 template<class TrackingData>
128 inline void Foam::wallNormalInfo::transform
130     const polyMesh&,
131     const tensor& rotTensor,
132     TrackingData& td
137 // No geometric data.
138 template<class TrackingData>
139 inline void Foam::wallNormalInfo::enterDomain
141     const polyMesh&,
142     const polyPatch& patch,
143     const label patchFaceI,
144     const point& faceCentre,
145     TrackingData& td
150 // Update this with w2 if w2 nearer to pt.
151 template<class TrackingData>
152 inline bool Foam::wallNormalInfo::updateCell
154     const polyMesh&,
155     const label thisCellI,
156     const label neighbourFaceI,
157     const wallNormalInfo& neighbourWallInfo,
158     const scalar tol,
159     TrackingData& td
162     return update(neighbourWallInfo, td);
166 // Update this with w2 if w2 nearer to pt.
167 template<class TrackingData>
168 inline bool Foam::wallNormalInfo::updateFace
170     const polyMesh&,
171     const label thisFaceI,
172     const label neighbourCellI,
173     const wallNormalInfo& neighbourWallInfo,
174     const scalar tol,
175     TrackingData& td
178     return update(neighbourWallInfo, td);
182 // Update this with w2 if w2 nearer to pt.
183 template<class TrackingData>
184 inline bool Foam::wallNormalInfo::updateFace
186     const polyMesh&,
187     const label thisFaceI,
188     const wallNormalInfo& neighbourWallInfo,
189     const scalar tol,
190     TrackingData& td
193     return update(neighbourWallInfo, td);
197 template <class TrackingData>
198 inline bool Foam::wallNormalInfo::equal
200     const wallNormalInfo& rhs,
201     TrackingData& td
202 ) const
204     return operator==(rhs);
208 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
210 inline bool Foam::wallNormalInfo::operator==(const Foam::wallNormalInfo& rhs)
211  const
213     return normal() == rhs.normal();
217 inline bool Foam::wallNormalInfo::operator!=(const Foam::wallNormalInfo& rhs)
218  const
220     return !(*this == rhs);
224 // ************************************************************************* //