cylinderToFace.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2017 OpenFOAM Foundation
9  Copyright (C) 2018-2022 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 #include "cylinderToFace.H"
30 #include "polyMesh.H"
32 
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34 
35 namespace Foam
36 {
37  defineTypeNameAndDebug(cylinderToFace, 0);
38  addToRunTimeSelectionTable(topoSetSource, cylinderToFace, word);
39  addToRunTimeSelectionTable(topoSetSource, cylinderToFace, istream);
40  addToRunTimeSelectionTable(topoSetFaceSource, cylinderToFace, word);
41  addToRunTimeSelectionTable(topoSetFaceSource, cylinderToFace, istream);
43  (
44  topoSetFaceSource,
45  cylinderToFace,
46  word,
47  cylinder
48  );
50  (
51  topoSetFaceSource,
52  cylinderToFace,
53  istream,
54  cylinder
55  );
56 }
57 
58 
59 Foam::topoSetSource::addToUsageTable Foam::cylinderToFace::usage_
60 (
61  cylinderToFace::typeName,
62  "\n Usage: cylinderToFace (p1X p1Y p1Z) (p2X p2Y p2Z) radius\n\n"
63  " Select faces with centres within bounding cylinder\n\n"
64 );
65 
66 
67 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
68 
69 void Foam::cylinderToFace::combine(topoSet& set, const bool add) const
70 {
71  const pointField& ctrs = mesh_.faceCentres();
72 
73  const vector axis = (point2_ - point1_);
74  const scalar magAxis2 = magSqr(axis);
75  const scalar orad2 = sqr(radius_);
76  const scalar irad2 = innerRadius_ > 0 ? sqr(innerRadius_) : -1;
77 
78  // Treat innerRadius == 0 like unspecified innerRadius (always accept)
79 
80  forAll(ctrs, elemi)
81  {
82  const vector d = ctrs[elemi] - point1_;
83  const scalar magD = d & axis;
84 
85  if ((magD > 0) && (magD < magAxis2))
86  {
87  const scalar d2 = (d & d) - sqr(magD)/magAxis2;
88  if ((d2 < orad2) && (d2 > irad2))
89  {
90  addOrDelete(set, elemi, add);
91  }
92  }
93  }
94 }
95 
96 
97 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
98 
100 (
101  const polyMesh& mesh,
102  const point& point1,
103  const point& point2,
104  const scalar radius,
105  const scalar innerRadius
106 )
107 :
108  topoSetFaceSource(mesh),
109  point1_(point1),
110  point2_(point2),
111  radius_(radius),
112  innerRadius_(innerRadius)
113 {
114  if (innerRadius_ > radius_)
115  {
117  << "inner radius = " << innerRadius_ << " cannot be larger than "
118  << "outer radius = " << radius_
119  << exit(FatalError);
120  }
121 }
122 
123 
125 (
126  const polyMesh& mesh,
127  const dictionary& dict
128 )
129 :
130  cylinderToFace
131  (
132  mesh,
133  dict.getCompat<point>("point1", {{"p1", -2112}}),
134  dict.getCompat<point>("point2", {{"p2", -2112}}),
135  dict.getCompat<scalar>("radius", {{"outerRadius", -2112}}),
136  dict.getCheckOrDefault<scalar>("innerRadius", 0, scalarMinMax::ge(0))
137  )
138 {}
139 
140 
142 (
143  const polyMesh& mesh,
144  Istream& is,
145  const bool mandatoryInnerRadius
146 )
147 :
148  topoSetFaceSource(mesh),
149  point1_(checkIs(is)),
150  point2_(checkIs(is)),
151  radius_(readScalar(checkIs(is))),
152  innerRadius_(0)
153 {
154  if (mandatoryInnerRadius)
155  {
156  innerRadius_ = readScalar(checkIs(is));
157  }
158 }
159 
160 
162 (
163  const polyMesh& mesh,
164  Istream& is
165 )
166 :
167  cylinderToFace(mesh, is, false)
168 {}
169 
170 
171 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
172 
174 (
175  const topoSetSource::setAction action,
176  topoSet& set
177 ) const
178 {
179  if (action == topoSetSource::ADD || action == topoSetSource::NEW)
180  {
181  if (verbose_)
182  {
183  Info<< " Adding faces with centres within cylinder"
184  << ", with point1 = " << point1_
185  << ", point2 = " << point2_
186  << ", radius = " << radius_;
187 
188  if (innerRadius_ > 0)
189  {
190  Info<< ", inner radius = " << innerRadius_;
191  }
192 
193  Info<< endl;
194  }
195 
196  combine(set, true);
197  }
198  else if (action == topoSetSource::SUBTRACT)
199  {
200  if (verbose_)
201  {
202  Info<< " Removing faces with centres within cylinder"
203  << ", with point1 = " << point1_
204  << ", point2 = " << point2_
205  << ", radius = " << radius_;
206 
207  if (innerRadius_ > 0)
208  {
209  Info<< ", inner radius = " << innerRadius_;
210  }
211 
212  Info<< endl;
213  }
214 
215  combine(set, false);
216  }
217 }
218 
219 
220 // ************************************************************************* //
virtual void applyToSet(const topoSetSource::setAction action, topoSet &set) const
Apply specified action to the topoSet.
dictionary dict
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:125
error FatalError
Error stream (stdout output on all processes), with additional &#39;FOAM FATAL ERROR&#39; header text and sta...
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:598
Create a new set and ADD elements to it.
Add elements to current set.
dimensionedSymmTensor sqr(const dimensionedVector &dv)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:531
static Istream & checkIs(Istream &is)
Check state of stream.
A topoSetFaceSource to select all faces whose face centre inside a given bounding cylinder or cylinde...
void addOrDelete(topoSet &set, const label id, const bool add) const
Add or delete id from set. Add when &#39;add&#39; is true.
Macros for easy insertion into run-time selection tables.
addNamedToRunTimeSelectionTable(topoSetCellSource, badQualityToCell, word, badQuality)
#define forAll(list, i)
Loop across all elements in list.
Definition: stdFoam.H:421
cylinderToFace(const polyMesh &mesh, Istream &is, const bool mandatoryInnerRadius)
Construct from Istream with mandatory inner radius.
AccessType combine(const UList< T > &lists, AccessOp aop=accessOp< T >())
Combines sub-lists into a single list.
Definition: ListListOps.C:62
vectorField pointField
pointField is a vectorField.
Definition: pointFieldFwd.H:38
dynamicFvMesh & mesh
static MinMax< scalar > ge(const scalar &minVal)
A semi-infinite range from minVal to the type max.
Definition: MinMaxI.H:24
T getCheckOrDefault(const word &keyword, const T &deflt, const Predicate &pred, enum keyType::option matchOpt=keyType::REGEX) const
Find and return a T, or return the given default value. FatalIOError if it is found and the number of...
setAction
Enumeration defining various actions.
Vector< scalar > vector
Definition: vector.H:57
const polyMesh & mesh_
Reference to the mesh.
void add(FieldField< Field1, typename typeOfSum< Type1, Type2 >::type > &f, const FieldField< Field1, Type1 > &f1, const FieldField< Field2, Type2 > &f2)
defineTypeNameAndDebug(combustionModel, 0)
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:59
T getCompat(const word &keyword, std::initializer_list< std::pair< const char *, int >> compat, enum keyType::option matchOpt=keyType::REGEX) const
Find and return a T using any compatibility names if needed. FatalIOError if not found, or if there are excess tokens.
const vectorField & faceCentres() const
Subtract elements from current set.
vector point
Point is a vector.
Definition: point.H:37
Class with constructor to add usage string to table.
messageStream Info
Information stream (stdout output on master, null elsewhere)
dimensioned< typename typeOfMag< Type >::type > magSqr(const dimensioned< Type > &dt)
Namespace for OpenFOAM.
addToRunTimeSelectionTable(functionObject, pointHistory, dictionary)