Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / parallel / decompose / decompositionMethods / structuredDecomp / topoDistanceDataI.H
blobd34aff7987b6cabbb4c9b75b40a2c01cd674cc3a
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2010-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  * * * * * * * * * * * //
31 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
33 // Null constructor
34 inline Foam::topoDistanceData::topoDistanceData()
36     data_(-1),
37     distance_(-1)
41 // Construct from components
42 inline Foam::topoDistanceData::topoDistanceData
44     const label data,
45     const label distance
48     data_(data),
49     distance_(distance)
53 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
55 template <class TrackingData>
56 inline bool Foam::topoDistanceData::valid(TrackingData& td) const
58     return distance_ != -1;
62 // No geometric data so never any problem on cyclics
63 template <class TrackingData>
64 inline bool Foam::topoDistanceData::sameGeometry
66     const polyMesh&,
67     const topoDistanceData&,
68     const scalar,
69     TrackingData&
70 ) const
72     return true;
76 // No geometric data.
77 template <class TrackingData>
78 inline void Foam::topoDistanceData::leaveDomain
80     const polyMesh&,
81     const polyPatch& patch,
82     const label patchFaceI,
83     const point& faceCentre,
84     TrackingData&
89 // No geometric data.
90 template <class TrackingData>
91 inline void Foam::topoDistanceData::transform
93     const polyMesh&,
94     const tensor& rotTensor,
95     TrackingData&
100 // No geometric data.
101 template <class TrackingData>
102 inline void Foam::topoDistanceData::enterDomain
104     const polyMesh&,
105     const polyPatch& patch,
106     const label patchFaceI,
107     const point& faceCentre,
108     TrackingData&
113 // Update cell with neighbouring face information
114 template <class TrackingData>
115 inline bool Foam::topoDistanceData::updateCell
117     const polyMesh&,
118     const label thisCellI,
119     const label neighbourFaceI,
120     const topoDistanceData& neighbourInfo,
121     const scalar tol,
122     TrackingData&
125     if (distance_ == -1)
126     {
127         data_ = neighbourInfo.data_;
128         distance_ = neighbourInfo.distance_ + 1;
129         return true;
130     }
131     else
132     {
133         return false;
134     }
138 // Update face with neighbouring cell information
139 template <class TrackingData>
140 inline bool Foam::topoDistanceData::updateFace
142     const polyMesh& mesh,
143     const label thisFaceI,
144     const label neighbourCellI,
145     const topoDistanceData& neighbourInfo,
146     const scalar tol,
147     TrackingData&
150     // From cell to its faces.
152     if (distance_ == -1)
153     {
154         operator=(neighbourInfo);
155         return true;
156     }
157     else
158     {
159         return false;
160     }
164 // Update face with coupled face information
165 template <class TrackingData>
166 inline bool Foam::topoDistanceData::updateFace
168     const polyMesh&,
169     const label thisFaceI,
170     const topoDistanceData& neighbourInfo,
171     const scalar tol,
172     TrackingData&
175     // From face to face (e.g. coupled faces)
176     if (distance_ == -1)
177     {
178         operator=(neighbourInfo);
179         return true;
180     }
181     else
182     {
183         return false;
184     }
188 template <class TrackingData>
189 inline bool Foam::topoDistanceData::equal
191     const topoDistanceData& rhs,
192     TrackingData& td
193 ) const
195     return operator==(rhs);
199 // * * * * * * * * * * * * * * * Member Operators  * * * * * * * * * * * * * //
201 inline bool Foam::topoDistanceData::operator==
203     const Foam::topoDistanceData& rhs
204 ) const
206     return data() == rhs.data() && distance() == rhs.distance();
210 inline bool Foam::topoDistanceData::operator!=
212     const Foam::topoDistanceData& rhs
213 ) const
215     return !(*this == rhs);
219 // ************************************************************************* //