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-2016 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 nonOverlapPatchName_;
43 }
44 
45 
47 {
48  // note: use nonOverlapPatchID() as opposed to patch name to initialise
49  // demand-driven data
50 
51  return this->boundaryMesh()[nonOverlapPatchID()];
52 }
53 
54 
56 {
57  // note: use nonOverlapPatchID() as opposed to patch name to initialise
58  // demand-driven data
59 
60  return const_cast<polyPatch&>(this->boundaryMesh()[nonOverlapPatchID()]);
61 }
62 
63 
65 {
66  if (owner())
67  {
68  return srcMask_;
69  }
70  else
71  {
72  return neighbPatch().tgtMask();
73  }
74 }
75 
76 
78 {
79  return tolerance_;
80 }
81 
82 
83 // ************************************************************************* //
void setUpdated(bool flag) const
Reset the updated flag.
virtual const cyclicACMIPolyPatch & neighbPatch() const
Return a reference to the neighbour patch.
const polyBoundaryMesh & boundaryMesh() const
Return boundaryMesh reference.
Definition: polyPatch.C:278
virtual const scalarField & tgtMask() const
Return the mask/weighting for the target patch.
const polyPatch & nonOverlapPatch() const
Return a const reference to the non-overlapping patch.
A class for handling words, derived from string.
Definition: word.H:59
bool updated() const
Return access to the updated flag.
const word & nonOverlapPatchName() const
Non-overlapping patch name.
const scalarField & mask() const
Mask field where 1 = overlap, 0 = no-overlap.
virtual bool owner() const
Does this side own the patch?
A patch is a list of labels that address the faces in the global face list.
Definition: polyPatch.H:66
virtual label nonOverlapPatchID() const
Non-overlapping patch ID.
static scalar tolerance()
Overlap tolerance.