50 setsToFaceZone::typeName,
51 "\n Usage: setsToFaceZone <faceSet> <slaveCellSet>\n\n"
52 " Select all faces in the faceSet."
53 " Orientated so slave side is in cellSet.\n\n"
62 const word& faceSetName,
63 const word& cellSetName,
68 faceSetName_(faceSetName),
69 cellSetName_(cellSetName),
81 faceSetName_(
dict.get<
word>(
"faceSet")),
82 cellSetName_(
dict.get<
word>(
"cellSet")),
83 flip_(
dict.getOrDefault(
"flip", false))
94 faceSetName_(checkIs(is)),
111 <<
"Operation only allowed on a faceZoneSet." <<
endl;
122 Info<<
" Adding all faces from face set: "
123 << faceSetName_ <<
"; orientation pointing ";
134 Info<<
" cell set: " << cellSetName_ <<
" ..." <<
endl;
142 DynamicList<label> newAddressing(zoneSet.addressing());
143 DynamicList<bool> newFlipMap(zoneSet.flipMap());
145 for (
const label facei : fSet)
147 if (!zoneSet.found(facei))
149 bool flipFace =
false;
151 const label own =
mesh_.faceOwner()[facei];
152 const bool ownFound = cSet.found(own);
154 if (
mesh_.isInternalFace(facei))
156 label nei =
mesh_.faceNeighbour()[facei];
157 bool neiFound = cSet.found(nei);
159 if (ownFound && !neiFound)
163 else if (!ownFound && neiFound)
170 <<
"One of owner or neighbour of internal face "
171 << facei <<
" should be in cellSet "
173 <<
" to be able to determine orientation."
175 <<
"Face:" << facei <<
" own:" << own
176 <<
" OwnInCellSet:" << ownFound
178 <<
" NeiInCellSet:" << neiFound
184 flipFace = !ownFound;
190 flipFace = !flipFace;
193 newAddressing.append(facei);
194 newFlipMap.append(flipFace);
198 zoneSet.addressing().transfer(newAddressing);
199 zoneSet.flipMap().transfer(newFlipMap);
206 Info<<
" Removing all faces from face set: "
207 << faceSetName_ <<
" ..." <<
endl;
211 faceZoneSet loadedSet(
mesh_, faceSetName_);
214 DynamicList<label> newAddressing(zoneSet.addressing().size());
215 DynamicList<bool> newFlipMap(zoneSet.flipMap().size());
217 forAll(zoneSet.addressing(), i)
219 if (!loadedSet.found(zoneSet.addressing()[i]))
221 newAddressing.append(zoneSet.addressing()[i]);
222 newFlipMap.append(zoneSet.flipMap()[i]);
225 zoneSet.addressing().transfer(newAddressing);
226 zoneSet.flipMap().transfer(newFlipMap);
Macros for easy insertion into run-time selection tables.
#define addToRunTimeSelectionTable(baseType, thisType, argNames)
Add to construction table with typeName as the key.
A 1D vector of objects of type <T> that resizes itself as necessary to accept the new objects.
void append(const T &val)
Copy append an element to the end of this list.
@ NO_REGISTER
Do not request registration (bool: false).
const word & name() const noexcept
Return the object name.
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
void transfer(List< T > &list)
Transfer the contents of the argument List into this list and annul the argument list.
void size(const label n)
Older name for setAddressableSize.
A collection of cell labels.
A list of keyword definitions, which are a keyword followed by a number of values (eg,...
Like faceSet but -reads data from faceZone -updates faceZone when writing.
const boolList & flipMap() const noexcept
const labelList & addressing() const noexcept
void updateSet()
Sort addressing and make faceSet part consistent with addressing.
Mesh consisting of general polyhedral cells.
A topoSetSource to select all faces in a given faceSet, which are oriented in slave cells of a given ...
setsToFaceZone(const polyMesh &mesh, const word &faceSetName, const word &cellSetName, const bool flip)
Construct from components.
virtual void applyToSet(const topoSetSource::setAction action, topoSet &set) const
Apply specified action to the topoSet.
The topoSetFaceZoneSource is a intermediate class for handling topoSet sources for selecting face zon...
topoSetFaceZoneSource(const polyMesh &mesh)
Construct from mesh.
Class with constructor to add usage string to table.
Base class of a source for a topoSet.
setAction
Enumeration defining various actions.
@ SUBTRACT
Subtract elements from current set.
@ ADD
Add elements to current set.
@ NEW
Create a new set and ADD elements to it.
bool verbose_
Output verbosity (default: true).
const polyMesh & mesh() const noexcept
Reference to the mesh.
const polyMesh & mesh_
Reference to the mesh.
static Istream & checkIs(Istream &is)
Check state of stream.
General set of labels of mesh quantity (points, cells, faces).
virtual bool found(const label id) const
Has the given index?
A class for handling words, derived from Foam::string.
#define defineTypeNameAndDebug(Type, DebugSwitch)
Define the typeName and debug information.
#define WarningInFunction
Report a warning using Foam::Warning.
Type & refCast(U &obj)
A dynamic_cast (for references) to Type reference.
messageStream Info
Information stream (stdout output on master, null elsewhere).
Ostream & endl(Ostream &os)
Add newline and flush stream.
const Type * isA(const U &obj)
Attempt dynamic_cast to Type.
#define forAll(list, i)
Loop across all elements in list.