cyclicACMIPolyPatchI.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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.
15 
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.
20 
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/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
27 
28 inline void Foam::cyclicACMIPolyPatch::setUpdated(const bool flag) const
29 {
30  updated_ = flag;
31 }
32 
33 
35 {
36  return updated_;
37 }
38 
39 
41 {
42  return faceAreas0_;
43 }
44 
45 
47 {
48  return nonOverlapPatchName_;
49 }
50 
51 
53 {
54  // note: use nonOverlapPatchID() as opposed to patch name to initialise
55  // demand-driven data
56 
57  return this->boundaryMesh()[nonOverlapPatchID()];
58 }
59 
60 
62 {
63  // note: use nonOverlapPatchID() as opposed to patch name to initialise
64  // demand-driven data
65 
66  return const_cast<polyPatch&>(this->boundaryMesh()[nonOverlapPatchID()]);
67 }
68 
69 
71 {
72  if (owner())
73  {
74  return srcMask_;
75  }
76  else
77  {
78  return neighbPatch().tgtMask();
79  }
80 }
81 
82 
83 // ************************************************************************* //
Foam::cyclicACMIPolyPatch::setUpdated
void setUpdated(bool flag) const
Reset the updated flag.
Definition: cyclicACMIPolyPatchI.H:28
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
Foam::cyclicACMIPolyPatch::faceAreas0
const vectorField & faceAreas0() const
Return access to the original patch face areas.
Definition: cyclicACMIPolyPatchI.H:40
Foam::cyclicACMIPolyPatch::updated
bool updated() const
Return access to the updated flag.
Definition: cyclicACMIPolyPatchI.H:34
Foam::cyclicACMIPolyPatch::nonOverlapPatchName
const word & nonOverlapPatchName() const
Non-overlapping patch name.
Definition: cyclicACMIPolyPatchI.H:46
Foam::cyclicACMIPolyPatch::nonOverlapPatch
const polyPatch & nonOverlapPatch() const
Return a const reference to the non-overlapping patch.
Definition: cyclicACMIPolyPatchI.H:52
Foam::Field
Pre-declare SubField and related Field type.
Definition: Field.H:57
Foam::polyPatch
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:66
Foam::cyclicACMIPolyPatch::updated_
bool updated_
Flag to indicate that AMI has been updated.
Definition: cyclicACMIPolyPatch.H:75
Foam::boundaryMesh
Addressing for all faces on surface of mesh. Can either be read from polyMesh or from triSurface....
Definition: boundaryMesh.H:59
Foam::cyclicACMIPolyPatch::mask
const scalarField & mask() const
Mask field where 1 = overlap, 0 = no-overlap.
Definition: cyclicACMIPolyPatchI.H:70