setsToFaceZone.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-2018 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 "setsToFaceZone.H"
27 #include "polyMesh.H"
28 #include "faceZoneSet.H"
29 #include "cellSet.H"
30 
32 
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
34 
35 namespace Foam
36 {
37  defineTypeNameAndDebug(setsToFaceZone, 0);
38  addToRunTimeSelectionTable(topoSetSource, setsToFaceZone, word);
39  addToRunTimeSelectionTable(topoSetSource, setsToFaceZone, istream);
40 }
41 
42 
43 Foam::topoSetSource::addToUsageTable Foam::setsToFaceZone::usage_
44 (
45  setsToFaceZone::typeName,
46  "\n Usage: setsToFaceZone <faceSet> <slaveCellSet>\n\n"
47  " Select all faces in the faceSet."
48  " Orientated so slave side is in cellSet.\n\n"
49 );
50 
51 
52 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
53 
55 (
56  const polyMesh& mesh,
57  const word& faceSetName,
58  const word& cellSetName,
59  const Switch& flip
60 )
61 :
62  topoSetSource(mesh),
63  faceSetName_(faceSetName),
64  cellSetName_(cellSetName),
65  flip_(flip)
66 {}
67 
68 
70 (
71  const polyMesh& mesh,
72  const dictionary& dict
73 )
74 :
75  topoSetSource(mesh),
76  faceSetName_(dict.lookup("faceSet")),
77  cellSetName_(dict.lookup("cellSet")),
78  flip_(dict.lookupOrDefault("flip", false))
79 {}
80 
81 
83 (
84  const polyMesh& mesh,
85  Istream& is
86 )
87 :
88  topoSetSource(mesh),
89  faceSetName_(checkIs(is)),
90  cellSetName_(checkIs(is)),
91  flip_(false)
92 {}
93 
94 
95 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
96 
98 {}
99 
100 
101 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
102 
104 (
105  const topoSetSource::setAction action,
106  topoSet& set
107 ) const
108 {
109  if (!isA<faceZoneSet>(set))
110  {
112  << "Operation only allowed on a faceZoneSet." << endl;
113  }
114  else
115  {
116  faceZoneSet& fzSet = refCast<faceZoneSet>(set);
117 
118  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
119  {
120  Info<< " Adding all faces from faceSet " << faceSetName_
121  << " ..." << endl;
122 
123  // Load the sets
124  faceSet fSet(mesh_, faceSetName_);
125  cellSet cSet(mesh_, cellSetName_);
126 
127  // Start off from copy
128  DynamicList<label> newAddressing(fzSet.addressing());
129  DynamicList<bool> newFlipMap(fzSet.flipMap());
130 
131  forAllConstIter(faceSet, fSet, iter)
132  {
133  label facei = iter.key();
134 
135  if (!fzSet.found(facei))
136  {
137  bool flipFace = false;
138 
139  label own = mesh_.faceOwner()[facei];
140  bool ownFound = cSet.found(own);
141 
142  if (mesh_.isInternalFace(facei))
143  {
144  label nei = mesh_.faceNeighbour()[facei];
145  bool neiFound = cSet.found(nei);
146 
147  if (ownFound && !neiFound)
148  {
149  flipFace = false;
150  }
151  else if (!ownFound && neiFound)
152  {
153  flipFace = true;
154  }
155  else
156  {
158  << "One of owner or neighbour of internal face "
159  << facei << " should be in cellSet "
160  << cSet.name()
161  << " to be able to determine orientation."
162  << endl
163  << "Face:" << facei << " own:" << own
164  << " OwnInCellSet:" << ownFound
165  << " nei:" << nei
166  << " NeiInCellSet:" << neiFound
167  << endl;
168  }
169  }
170  else
171  {
172  flipFace = !ownFound;
173  }
174 
175 
176  if (flip_)
177  {
178  flipFace = !flipFace;
179  }
180 
181  newAddressing.append(facei);
182  newFlipMap.append(flipFace);
183  }
184  }
185 
186  fzSet.addressing().transfer(newAddressing);
187  fzSet.flipMap().transfer(newFlipMap);
188  fzSet.updateSet();
189  }
190  else if (action == topoSetSource::DELETE)
191  {
192  Info<< " Removing all faces from faceSet " << faceSetName_
193  << " ..." << endl;
194 
195  // Load the set
196  faceZoneSet loadedSet(mesh_, faceSetName_);
197 
198  // Start off empty
199  DynamicList<label> newAddressing(fzSet.addressing().size());
200  DynamicList<bool> newFlipMap(fzSet.flipMap().size());
201 
202  forAll(fzSet.addressing(), i)
203  {
204  if (!loadedSet.found(fzSet.addressing()[i]))
205  {
206  newAddressing.append(fzSet.addressing()[i]);
207  newFlipMap.append(fzSet.flipMap()[i]);
208  }
209  }
210  fzSet.addressing().transfer(newAddressing);
211  fzSet.flipMap().transfer(newFlipMap);
212  fzSet.updateSet();
213  }
214  }
215 }
216 
217 
218 // ************************************************************************* //
const boolList & flipMap() const
Definition: faceZoneSet.H:118
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:428
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
const word & name() const
Return name.
Definition: IOobject.H:297
A list of face labels.
Definition: faceSet.H:48
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:137
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:163
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:256
A simple wrapper around bool so that it can be read as a word: true/false, on/off, yes/no, y/n, t/f, or none.
Definition: Switch.H:60
setsToFaceZone(const polyMesh &mesh, const word &faceSetName, const word &cellSetName, const Switch &flip)
Construct from components.
Macros for easy insertion into run-time selection tables.
Base class of a source for a topoSet.
Definition: topoSetSource.H:63
virtual ~setsToFaceZone()
Destructor.
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
forAllConstIter(PtrDictionary< phaseModel >, mixture.phases(), phase)
Definition: pEqn.H:29
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
void updateSet()
Sort addressing and make faceSet part consistent with addressing.
Definition: faceZoneSet.C:51
Like faceSet but -reads data from faceZone -updates faceZone when writing.
Definition: faceZoneSet.H:49
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:61
T lookupOrDefault(const word &, const T &, bool recursive=false, bool patternMatch=true) const
Find and return a T,.
#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
messageStream Info
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
const labelList & addressing() const
Definition: faceZoneSet.H:107
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:576