111 bool changed =
false;
115 if (nearest[bFacei] != -1)
120 const label patchID = surfToMeshPatch[rMeshPatchID];
149 int main(
int argc,
char *argv[])
153 "reads surface and applies surface regioning to a mesh"
162 "only repatch the faces in specified faceSet"
168 "search tolerance as fraction of mesh size (default 1e-3)"
177 Info<<
"Reading surface from " << surfName <<
" ..." <<
endl;
184 Info<<
"Repatching only the faces in faceSet " << setName
185 <<
" according to nearest surface triangle ..." <<
endl;
189 Info<<
"Patching all boundary faces according to nearest surface"
190 <<
" triangle ..." <<
endl;
199 Info<<
"All boundary faces further away than " << searchTol
200 <<
" of mesh bounding box " <<
meshBb
201 <<
" will keep their patch label ..." <<
endl;
204 Info<<
"Before patching:" <<
nl
205 <<
" patch\tsize" <<
endl;
228 patchMap[i] = addPatch(
mesh, bPatches[i].
name());
242 if (nearest[bFacei] == -1)
248 Pout<<
"Writing all " << unmatchedFaces.size()
249 <<
" unmatched faces to faceSet "
250 << unmatchedFaces.
name()
253 unmatchedFaces.
write();
264 Info<<
"Read " << faceLabels.size() <<
" faces to repatch ..." <<
endl;
268 label facei = iter.key();
270 if (repatchFace(
mesh, rMesh, nearest, patchMap, facei, meshMod))
282 if (repatchFace(
mesh, rMesh, nearest, patchMap, facei, meshMod))
289 Pout<<
"Changed " << nChanged <<
" boundary faces." <<
nl <<
endl;
295 Info<<
"After patching:" <<
nl
296 <<
" patch\tsize" <<
endl;
309 Info<<
"Writing modified mesh to time "
310 << runTime.userTimeName() <<
endl;
#define forAll(list, i)
Loop across all elements in list.
#define forAllConstIter(Container, container, iter)
Iterate across all elements in the container object of type.
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
void size(const label)
Override size to be inconsistent with allocated storage.
virtual const fileName & name() const
Return the name of the stream.
virtual Ostream & write(const token &)
Write token.
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
label size() const
Return the number of elements in the UList.
label size() const
Return the number of elements in the UPtrList.
static void addOption(const word &opt, const string ¶m="", const string &usage="")
Add to an option to validOptions with usage information.
static void addNote(const string &)
Add extra notes for the usage information.
bool optionReadIfPresent(const word &opt, T &) const
Read a value from the named option if present.
static void noParallel()
Remove the parallel options.
static SLList< string > validArgs
A list of valid (mandatory) arguments.
T optionLookupOrDefault(const word &opt, const T &deflt) const
Read a value from the named option if present.
A bounding box defined in terms of the points at its extremities.
A class for handling file names.
label findIndex(const word &patchName) const
Find patch index given a name.
const fvBoundaryMesh & boundary() const
Return reference to boundary mesh.
Mesh consisting of general polyhedral cells.
virtual const faceList & faces() const
Return raw faces.
virtual const labelList & faceOwner() const
Return face owner.
void addPatches(const List< polyPatch * > &, const bool validBoundary=true)
Add boundary patches.
void removeBoundary()
Remove boundary patches.
const boundBox & bounds() const
Return mesh bounding box.
A patch is a list of labels that address the faces in the global face list.
label start() const
Return start label of this patch in the polyMesh face list.
virtual autoPtr< polyPatch > clone(const polyBoundaryMesh &bm) const
Construct and return a clone, resetting the boundary mesh.
Direct mesh changes based on v1.3 polyTopoChange syntax.
autoPtr< polyTopoChangeMap > changeMesh(polyMesh &mesh, const bool syncParallel=true, const bool orderCells=false, const bool orderPoints=false)
Inplace changes mesh without change of patches.
void modifyFace(const face &f, const label facei, const label own, const label nei, const bool flipFaceFlux, const label patchID)
Modify vertices or cell of face.
label nInternalFaces() const
virtual bool write(const bool write=true) const
Write using setting from DB.
Addressing for all faces on surface of mesh. Can either be read from polyMesh or from triSurface....
void readTriSurface(const fileName &)
Read from triSurface.
labelList getNearest(const primitiveMesh &pMesh, const vector &searchSpan) const
Get rMesh index of nearest face for every boundary face in.
label whichPatch(const label facei) const
Get index of patch face is in.
const PtrList< repatchPatch > & patches() const
Access the patches.
A class for handling words, derived from string.
Foam::fvMesh mesh(Foam::IOobject(regionName, runTime.name(), runTime, Foam::IOobject::MUST_READ), false)
int main(int argc, char *argv[])
const fvPatchList & patches
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Ostream & endl(Ostream &os)
Add newline and flush stream.
word name(const LagrangianState state)
Return a string representation of a Lagrangian state enumeration.
prefixOSstream Pout(cout, "Pout")
List< treeBoundBox > meshBb(1, treeBoundBox(boundBox(coarseMesh.points(), false)).extend(1e-3))
Foam::argList args(argc, argv)