setToPointZone.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) 2011-2021 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 "setToPointZone.H"
27 #include "polyMesh.H"
28 #include "pointZoneSet.H"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35  defineTypeNameAndDebug(setToPointZone, 0);
36  addToRunTimeSelectionTable(topoSetSource, setToPointZone, word);
37 }
38 
39 
40 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
41 
43 (
44  const polyMesh& mesh,
45  const word& setName
46 )
47 :
48  topoSetSource(mesh),
49  setName_(setName)
50 {}
51 
52 
54 (
55  const polyMesh& mesh,
56  const dictionary& dict
57 )
58 :
59  topoSetSource(mesh),
60  setName_(dict.lookupBackwardsCompatible<word>({"set", "pointSet"}))
61 {}
62 
63 
64 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
65 
67 {}
68 
69 
70 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
71 
73 (
74  const topoSetSource::setAction action,
75  topoSet& set
76 ) const
77 {
78  if (!isA<pointZoneSet>(set))
79  {
81  << "Operation only allowed on a pointZoneSet." << endl;
82  }
83  else
84  {
85  pointZoneSet& fzSet = refCast<pointZoneSet>(set);
86 
87  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
88  {
89  Info<< " Adding all points from pointSet " << setName_
90  << " ..." << endl;
91 
92  // Load the sets
93  pointSet fSet(mesh_, setName_);
94 
95  // Start off from copy
96  DynamicList<label> newAddressing(fzSet.addressing());
97 
98  forAllConstIter(pointSet, fSet, iter)
99  {
100  label pointi = iter.key();
101 
102  if (!fzSet.found(pointi))
103  {
104  newAddressing.append(pointi);
105  }
106  }
107 
108  fzSet.addressing().transfer(newAddressing);
109  fzSet.updateSet();
110  }
111  else if (action == topoSetSource::DELETE)
112  {
113  Info<< " Removing all points from pointSet " << setName_
114  << " ..." << endl;
115 
116  // Load the set
117  pointSet loadedSet(mesh_, setName_);
118 
119  // Start off empty
120  DynamicList<label> newAddressing(fzSet.addressing().size());
121 
122  forAll(fzSet.addressing(), i)
123  {
124  if (!loadedSet.found(fzSet.addressing()[i]))
125  {
126  newAddressing.append(fzSet.addressing()[i]);
127  }
128  }
129  fzSet.addressing().transfer(newAddressing);
130  fzSet.updateSet();
131  }
132  }
133 }
134 
135 
136 // ************************************************************************* //
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
A set of point labels.
Definition: pointSet.H:48
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
#define forAllConstIter(Container, container, iter)
Iterate across all elements in the container object of type.
Definition: UList.H:477
void size(const label)
Override size to be inconsistent with allocated storage.
Definition: ListI.H:164
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
setToPointZone(const polyMesh &mesh, const word &setName)
Construct from components.
void updateSet()
Sort addressing and make pointSet part consistent with addressing.
Definition: pointZoneSet.C:50
Macros for easy insertion into run-time selection tables.
Base class of a source for a topoSet.
Definition: topoSetSource.H:63
A 1D vector of objects of type <T> that resizes itself as necessary to accept the new objects...
Definition: DynamicList.H:56
bool found(const Key &) const
Return true if hashedEntry is found in table.
Definition: HashTable.C:113
A class for handling words, derived from string.
Definition: word.H:59
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:82
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
defineTypeNameAndDebug(combustionModel, 0)
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:61
const labelList & addressing() const
Definition: pointZoneSet.H:106
#define WarningInFunction
Report a warning using Foam::Warning.
virtual ~setToPointZone()
Destructor.
messageStream Info
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:76
void transfer(List< T > &)
Transfer the contents of the argument List into this list.
Definition: List.C:342
ITstream & lookupBackwardsCompatible(const wordList &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream, trying a list of keywords.
Definition: dictionary.C:875
Namespace for OpenFOAM.
Like pointSet but -reads data from pointZone -updates pointZone when writing.
Definition: pointZoneSet.H:50