setsToFaceZone.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 | Copyright (C) 2011-2015 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 
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 
54 // Construct from components
56 (
57  const polyMesh& mesh,
58  const word& faceSetName,
59  const word& cellSetName,
60  const Switch& flip
61 )
62 :
64  faceSetName_(faceSetName),
65  cellSetName_(cellSetName),
66  flip_(flip)
67 {}
68 
69 
70 // Construct from dictionary
72 (
73  const polyMesh& mesh,
74  const dictionary& dict
75 )
76 :
78  faceSetName_(dict.lookup("faceSet")),
79  cellSetName_(dict.lookup("cellSet")),
80  flip_(dict.lookupOrDefault("flip", false))
81 {}
82 
83 
84 // Construct from Istream
86 (
87  const polyMesh& mesh,
88  Istream& is
89 )
90 :
92  faceSetName_(checkIs(is)),
93  cellSetName_(checkIs(is)),
94  flip_(false)
95 {}
96 
97 
98 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
99 
101 {}
102 
103 
104 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
105 
107 (
108  const topoSetSource::setAction action,
109  topoSet& set
110 ) const
111 {
112  if (!isA<faceZoneSet>(set))
113  {
115  << "Operation only allowed on a faceZoneSet." << endl;
116  }
117  else
118  {
119  faceZoneSet& fzSet = refCast<faceZoneSet>(set);
120 
121  if ((action == topoSetSource::NEW) || (action == topoSetSource::ADD))
122  {
123  Info<< " Adding all faces from faceSet " << faceSetName_
124  << " ..." << endl;
125 
126  // Load the sets
127  faceSet fSet(mesh_, faceSetName_);
128  cellSet cSet(mesh_, cellSetName_);
129 
130  // Start off from copy
131  DynamicList<label> newAddressing(fzSet.addressing());
132  DynamicList<bool> newFlipMap(fzSet.flipMap());
133 
134  forAllConstIter(faceSet, fSet, iter)
135  {
136  label faceI = iter.key();
137 
138  if (!fzSet.found(faceI))
139  {
140  bool flipFace = false;
141 
142  label own = mesh_.faceOwner()[faceI];
143  bool ownFound = cSet.found(own);
144 
145  if (mesh_.isInternalFace(faceI))
146  {
147  label nei = mesh_.faceNeighbour()[faceI];
148  bool neiFound = cSet.found(nei);
149 
150  if (ownFound && !neiFound)
151  {
152  flipFace = false;
153  }
154  else if (!ownFound && neiFound)
155  {
156  flipFace = true;
157  }
158  else
159  {
161  << "One of owner or neighbour of internal face "
162  << faceI << " should be in cellSet "
163  << cSet.name()
164  << " to be able to determine orientation."
165  << endl
166  << "Face:" << faceI << " own:" << own
167  << " OwnInCellSet:" << ownFound
168  << " nei:" << nei
169  << " NeiInCellSet:" << neiFound
170  << endl;
171  }
172  }
173  else
174  {
175  flipFace = !ownFound;
176  }
177 
178 
179  if (flip_)
180  {
181  flipFace = !flipFace;
182  }
183 
184  newAddressing.append(faceI);
185  newFlipMap.append(flipFace);
186  }
187  }
188 
189  fzSet.addressing().transfer(newAddressing);
190  fzSet.flipMap().transfer(newFlipMap);
191  fzSet.updateSet();
192  }
193  else if (action == topoSetSource::DELETE)
194  {
195  Info<< " Removing all faces from faceSet " << faceSetName_
196  << " ..." << endl;
197 
198  // Load the set
199  faceZoneSet loadedSet(mesh_, faceSetName_);
200 
201  // Start off empty
202  DynamicList<label> newAddressing(fzSet.addressing().size());
203  DynamicList<bool> newFlipMap(fzSet.flipMap().size());
204 
205  forAll(fzSet.addressing(), i)
206  {
207  if (!loadedSet.found(fzSet.addressing()[i]))
208  {
209  newAddressing.append(fzSet.addressing()[i]);
210  newFlipMap.append(fzSet.flipMap()[i]);
211  }
212  }
213  fzSet.addressing().transfer(newAddressing);
214  fzSet.flipMap().transfer(newFlipMap);
215  fzSet.updateSet();
216  }
217  }
218 }
219 
220 
221 // ************************************************************************* //
Foam::faceZoneSet::addressing
const labelList & addressing() const
Definition: faceZoneSet.H:107
Foam::topoSetSource::ADD
@ ADD
Definition: topoSetSource.H:87
Foam::Switch
A simple wrapper around bool so that it can be read as a word: true/false, on/off,...
Definition: Switch.H:60
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
forAll
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:406
Foam::DynamicList< label >
faceZoneSet.H
Foam::faceZoneSet::updateSet
void updateSet()
Sort addressing and make faceSet part consistent with addressing.
Definition: faceZoneSet.C:48
Foam::addToRunTimeSelectionTable
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
Foam::topoSetSource::addToUsageTable
Class with constructor to add usage string to table.
Definition: topoSetSource.H:100
Foam::List::transfer
void transfer(List< T > &)
Transfer the contents of the argument List into this list.
Foam::faceSet
A list of face labels.
Definition: faceSet.H:48
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Foam::topoSetSource::setAction
setAction
Enumeration defining the valid actions.
Definition: topoSetSource.H:82
Foam::topoSetSource::NEW
@ NEW
Definition: topoSetSource.H:85
polyMesh.H
Foam::faceZoneSet::flipMap
const boolList & flipMap() const
Definition: faceZoneSet.H:118
Foam::polyMesh
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
Foam::setsToFaceZone::~setsToFaceZone
virtual ~setsToFaceZone()
Destructor.
Definition: setsToFaceZone.C:100
forAllConstIter
forAllConstIter(PtrDictionary< phaseModel >, mixture.phases(), phase)
Definition: pEqn.H:39
Foam::setsToFaceZone::applyToSet
virtual void applyToSet(const topoSetSource::setAction action, topoSet &) const
Definition: setsToFaceZone.C:107
Foam::label
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
Foam::Istream
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:57
Foam::Info
messageStream Info
Foam::setsToFaceZone::setsToFaceZone
setsToFaceZone(const polyMesh &mesh, const word &faceSetName, const word &cellSetName, const Switch &flip)
Construct from components.
Definition: setsToFaceZone.C:56
Foam::faceZoneSet
Like faceSet but updates faceZone when writing.
Definition: faceZoneSet.H:49
Foam::topoSetSource::DELETE
@ DELETE
Definition: topoSetSource.H:88
Foam::IOobject::name
const word & name() const
Return name.
Definition: IOobject.H:273
Foam::topoSet
General set of labels of mesh quantity (points, cells, faces).
Definition: topoSet.H:61
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
Foam::HashTable::found
bool found(const Key &) const
Return true if hashedEntry is found in table.
Definition: HashTable.C:109
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::topoSetSource
Base class of a source for a topoSet.
Definition: topoSetSource.H:63
Foam::cellSet
A collection of cell labels.
Definition: cellSet.H:48
Foam::DynamicList::append
DynamicList< T, SizeInc, SizeMult, SizeDiv > & append(const T &)
Append an element at the end of the list.
setsToFaceZone.H
Foam::setsToFaceZone::usage_
static addToUsageTable usage_
Add usage string.
Definition: setsToFaceZone.H:56
cellSet.H
Foam::List::size
void size(const label)
Override size to be inconsistent with allocated storage.
Foam::defineTypeNameAndDebug
defineTypeNameAndDebug(combustionModel, 0)
WarningInFunction
#define WarningInFunction
Report a warning using Foam::Warning.
Definition: messageStream.H:259