polyTopoChangeI.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) 2011 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 #include "face.H"
27 
28 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
29 
30 inline bool Foam::polyTopoChange::pointRemoved(const label pointI) const
31 {
32  const point& pt = points_[pointI];
33 
34  return
35  pt.x() > 0.5*vector::max.x()
36  && pt.y() > 0.5*vector::max.y()
37  && pt.z() > 0.5*vector::max.z();
38 }
39 
40 
41 inline bool Foam::polyTopoChange::faceRemoved(const label faceI) const
42 {
43  return faces_[faceI].empty();
44 }
45 
46 
47 inline bool Foam::polyTopoChange::cellRemoved(const label cellI) const
48 {
49  return cellMap_[cellI] == -2;
50 }
51 
52 
54 {
55  nPatches_ = nPatches;
56 }
57 
58 
59 // ************************************************************************* //
nPatches
label nPatches
Definition: readKivaGrid.H:402
Foam::Vector< scalar >::max
static const Vector max
Definition: Vector.H:82
face.H
Foam::label
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Foam::Vector::x
const Cmpt & x() const
Definition: VectorI.H:65
Foam::polyTopoChange::pointRemoved
bool pointRemoved(const label pointI) const
Is point removed?
Definition: polyTopoChangeI.H:30
Foam::Vector::z
const Cmpt & z() const
Definition: VectorI.H:77
Foam::polyTopoChange::faceRemoved
bool faceRemoved(const label faceI) const
Is face removed?
Definition: polyTopoChangeI.H:41
Foam::Vector< scalar >
Foam::polyTopoChange::cellRemoved
bool cellRemoved(const label cellI) const
Is cell removed?
Definition: polyTopoChangeI.H:47
Foam::polyTopoChange::setNumPatches
void setNumPatches(const label nPatches)
Explicitly set the number of patches if construct-without-mesh.
Definition: polyTopoChangeI.H:53
Foam::Vector::y
const Cmpt & y() const
Definition: VectorI.H:71
Foam::polyTopoChange::points_
DynamicList< point > points_
Current point set.
Definition: polyTopoChange.H:115