hemisphereToCell.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2024 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 "hemisphereToCell.H"
27 #include "polyMesh.H"
29 
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
36 }
37 
38 
39 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
40 
41 void Foam::hemisphereToCell::combine(topoSet& set, const bool add) const
42 {
43  const pointField& ctrs = mesh_.cellCentres();
44 
45  const scalar radSquared = radius_*radius_;
46  forAll(ctrs, celli)
47  {
48  const vector offset = ctrs[celli] - centre_;
49  const scalar projection = offset & (axis_ - centre_);
50 
51  if (projection >= 0 && magSqr(offset) <= radSquared)
52  {
53  addOrDelete(set, celli, add);
54  }
55  }
56 }
57 
58 
59 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
60 
62 (
63  const polyMesh& mesh,
64  const vector& centre,
65  const scalar radius,
66  const vector& axis
67 )
68 :
69  topoSetSource(mesh),
70  centre_(centre),
71  radius_(radius),
72  axis_(axis)
73 {}
74 
75 
77 (
78  const polyMesh& mesh,
79  const dictionary& dict
80 )
81 :
82  topoSetSource(mesh),
83  centre_(dict.lookup<point>("centre", dimLength)),
84  radius_(dict.lookup<scalar>("radius", dimLength)),
85  axis_(dict.lookup<vector>("axis", dimless))
86 {}
87 
88 
89 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
90 
92 {}
93 
94 
95 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
96 
98 (
99  const topoSetSource::setAction action,
100  topoSet& set
101 ) const
102 {
103  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
104  {
105  Info<< " Adding cells with centre within sphere, with centre = "
106  << centre_ << " and radius = " << radius_ << endl;
107 
108  combine(set, true);
109  }
110  else if (action == topoSetSource::DELETE)
111  {
112  Info<< " Removing cells with centre within sphere, with centre = "
113  << centre_ << " and radius = " << radius_ << endl;
114 
115  combine(set, false);
116  }
117 }
118 
119 
120 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
Macros for easy insertion into run-time selection tables.
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:162
A topoSetSource to select cells based on cell centres inside a hemisphere.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
virtual ~hemisphereToCell()
Destructor.
hemisphereToCell(const polyMesh &mesh, const vector &centre, const scalar radius, const vector &axis)
Construct from components.
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:80
const vectorField & cellCentres() const
Base class of a source for a topoSet.
Definition: topoSetSource.H:64
void addOrDelete(topoSet &set, const label celli, const bool) const
Add (if bool) celli to set or delete celli from set.
Definition: topoSetSource.C:96
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:83
const polyMesh & mesh_
Definition: topoSetSource.H:99
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:65
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.
addToRunTimeSelectionTable(polyPatch, mergedCyclicPolyPatch, word)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:257
const dimensionSet dimless
messageStream Info
const dimensionSet dimLength
vectorField pointField
pointField is a vectorField.
Definition: pointFieldFwd.H:42
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
void add(FieldField< Field1, typename typeOfSum< Type1, Type2 >::type > &f, const FieldField< Field1, Type1 > &f1, const FieldField< Field2, Type2 > &f2)
defineTypeNameAndDebug(combustionModel, 0)
treeBoundBox combine(const treeBoundBox &a, const treeBoundBox &b)
Definition: patchToPatch.C:78
void offset(label &lst, const label o)
dimensioned< scalar > magSqr(const dimensioned< Type > &)
dictionary dict