setToCellZone.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-2020 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 "setToCellZone.H"
27 #include "polyMesh.H"
28 #include "cellZoneSet.H"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35  defineTypeNameAndDebug(setToCellZone, 0);
36  addToRunTimeSelectionTable(topoSetSource, setToCellZone, word);
37  addToRunTimeSelectionTable(topoSetSource, setToCellZone, istream);
38 }
39 
40 
41 Foam::topoSetSource::addToUsageTable Foam::setToCellZone::usage_
42 (
43  setToCellZone::typeName,
44  "\n Usage: setToCellZone <cellSet>\n\n"
45  " Select all cells in the cellSet.\n\n"
46 );
47 
48 
49 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
50 
52 (
53  const polyMesh& mesh,
54  const word& setName
55 )
56 :
57  topoSetSource(mesh),
58  setName_(setName)
59 {}
60 
61 
63 (
64  const polyMesh& mesh,
65  const dictionary& dict
66 )
67 :
68  topoSetSource(mesh),
69  setName_
70  (
71  dict.found("set")
72  ? dict.lookup("set")
73  : dict.found("cellSet")
74  ? dict.lookup("cellSet")
75  : dict.lookup("set")
76  )
77 {}
78 
79 
81 (
82  const polyMesh& mesh,
83  Istream& is
84 )
85 :
86  topoSetSource(mesh),
87  setName_(checkIs(is))
88 {}
89 
90 
91 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
92 
94 {}
95 
96 
97 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
98 
100 (
101  const topoSetSource::setAction action,
102  topoSet& set
103 ) const
104 {
105  if (!isA<cellZoneSet>(set))
106  {
108  << "Operation only allowed on a cellZoneSet." << endl;
109  }
110  else
111  {
112  cellZoneSet& fzSet = refCast<cellZoneSet>(set);
113 
114  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
115  {
116  Info<< " Adding all cells from cellSet " << setName_
117  << " ..." << endl;
118 
119  // Load the sets
120  cellSet fSet(mesh_, setName_);
121 
122  // Start off from copy
123  DynamicList<label> newAddressing(fzSet.addressing());
124 
125  forAllConstIter(cellSet, fSet, iter)
126  {
127  label celli = iter.key();
128 
129  if (!fzSet.found(celli))
130  {
131  newAddressing.append(celli);
132  }
133  }
134 
135  fzSet.addressing().transfer(newAddressing);
136  fzSet.updateSet();
137  }
138  else if (action == topoSetSource::DELETE)
139  {
140  Info<< " Removing all cells from cellSet " << setName_
141  << " ..." << endl;
142 
143  // Load the set
144  cellSet loadedSet(mesh_, setName_);
145 
146  // Start off empty
147  DynamicList<label> newAddressing(fzSet.addressing().size());
148 
149  forAll(fzSet.addressing(), i)
150  {
151  if (!loadedSet.found(fzSet.addressing()[i]))
152  {
153  newAddressing.append(fzSet.addressing()[i]);
154  }
155  }
156  fzSet.addressing().transfer(newAddressing);
157  fzSet.updateSet();
158  }
159  }
160 }
161 
162 
163 // ************************************************************************* //
bool found(const word &, bool recursive=false, bool patternMatch=true) const
Search dictionary for given keyword.
Definition: dictionary.C:667
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
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
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
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
Like cellSet but -reads data from cellZone -updates cellZone when writing.
Definition: cellZoneSet.H:49
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
Macros for easy insertion into run-time selection tables.
setToCellZone(const polyMesh &mesh, const word &setName)
Construct from components.
Definition: setToCellZone.C:52
Base class of a source for a topoSet.
Definition: topoSetSource.H:63
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
void updateSet()
Sort addressing and make cellSet part consistent with addressing.
Definition: cellZoneSet.C:48
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:82
forAllConstIter(PtrDictionary< phaseModel >, mixture.phases(), phase)
Definition: pEqn.H:29
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:61
virtual ~setToCellZone()
Destructor.
Definition: setToCellZone.C:93
#define WarningInFunction
Report a warning using Foam::Warning.
Class with constructor to add usage string to table.
A collection of cell labels.
Definition: cellSet.H:48
const labelList & addressing() const
Definition: cellZoneSet.H:102
messageStream Info
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
void transfer(List< T > &)
Transfer the contents of the argument List into this list.
Definition: List.C:342
Namespace for OpenFOAM.
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.
Definition: dictionary.C:812