73 int main(
int argc,
char *argv[])
80 "write block edges and centres as .obj files" 85 "keep the existing files in the polyMesh" 92 " For a given block, the correspondence between the ordering of\n" 93 " vertex labels and face labels is shown below.\n" 94 " For vertex numbering in the sequence 0 to 7 (block, centre):\n" 95 " faces 0 (f0) and 1 are left and right, respectively;\n" 96 " faces 2 and 3 are front and back; \n" 97 " and faces 4 and 5 are bottom and top::\n" 124 Info<< nl <<
"Generating mesh for region " << regionName <<
endl;
139 Info<<
"Not deleting polyMesh directory " << nl
140 <<
" " << polyMeshPath << nl
145 Info<<
"Deleting polyMesh directory" << nl
146 <<
" " << polyMeshPath <<
endl;
157 <<
"Cannot find file " << meshDictIO.localObjectPath()
162 Info<<
"Creating block mesh from\n " 163 << meshDictIO.localObjectPath() <<
endl;
173 fileName objMeshFile(
"blockTopology.obj");
177 Info<< nl <<
"Dumping block structure as Lightwave obj format" 178 <<
" to " << objMeshFile <<
endl;
180 blocks.writeTopology(str);
185 fileName objCcFile(
"blockCentres.obj");
189 Info<< nl <<
"Dumping block centres as Lightwave obj format" 190 <<
" to " << objCcFile <<
endl;
192 const polyMesh& topo = blocks.topology();
196 forAll(cellCentres, celli)
199 const point& cc = cellCentres[celli];
201 str <<
"v " << cc.
x() <<
' ' << cc.
y() <<
' ' << cc.
z() <<
nl;
211 Info<< nl <<
"Creating polyMesh from blockMesh" <<
endl;
213 word defaultFacesName =
"defaultFaces";
214 word defaultFacesType = emptyPolyPatch::typeName;
223 clone(blocks.points()),
234 if (meshDict.found(
"mergePatchPairs"))
238 meshDict.lookup(
"mergePatchPairs")
245 Info<< nl <<
"There are no merge patch pairs edges" <<
endl;
252 label nZones = blocks.numZonedBlocks();
256 Info<< nl <<
"Adding cell zones" <<
endl;
272 const block& b = blocks[blockI];
282 if (iter == zoneMap.
end())
286 Info<<
" " << zoneI <<
'\t' << zoneName <<
endl;
288 zoneMap.insert(zoneName, zoneI);
297 zoneCells[zoneI].append(celli++);
302 celli += b.
cells().size();
311 label zoneI = iter();
316 zoneCells[zoneI].
shrink(),
332 bool hasCyclic =
false;
335 if (isA<cyclicPolyPatch>(patches[
patchi]))
344 Info<< nl <<
"Detected cyclic patches; ordering boundary faces" 348 meshMod.changeMesh(
mesh,
false);
357 Info<< nl <<
"Writing polyMesh" <<
endl;
362 <<
"Failed writing polyMesh." 371 Info<<
"----------------" << nl
372 <<
"Mesh Information" << nl
373 <<
"----------------" << nl
380 Info<<
"----------------" << nl
382 <<
"----------------" <<
nl;
389 <<
" (start: " << p.
start()
390 <<
" size: " << p.size()
391 <<
") name: " << p.
name()
const polyBoundaryMesh & boundaryMesh() const
Return boundary mesh.
bool exists(const fileName &, const bool checkVariants=true, const bool followLink=true)
Does the name exist (as directory or file) in the file system?
#define forAll(list, i)
Loop across all elements in list.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
const word & name() const
Return name.
A class for handling file names.
errorManipArg< error, int > exit(error &err, const int errNo=1)
static iteratorEnd end()
iteratorEnd set to beyond the end of any HashTable
const meshCellZones & cellZones() const
Return cell zones.
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
label nInternalFaces() const
A 1D array of objects of type <T>, where the size of the vector is known and used for subscript bound...
static word meshSubDir
Return the mesh sub-directory name (usually "polyMesh")
static unsigned int defaultPrecision()
Return the default precision.
List< FixedList< label, 8 > > cells() const
Return the cells for filling the block.
static word defaultRegion
Return the default region name.
Ostream & endl(Ostream &os)
Add newline and flush stream.
bool optionFound(const word &opt) const
Return true if the named option is found.
static void noParallel()
Remove the parallel options.
A bounding box defined in terms of the points at its extremities.
virtual bool write(const bool write=true) const
Write mesh using IO settings from time.
bool optionReadIfPresent(const word &opt, T &) const
Read a value from the named option if present.
const meshPointZones & pointZones() const
Return point zones.
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
virtual const pointField & points() const
Return raw points.
iterator find(const Key &)
Find and return an iterator set at the hashedEntry.
Functions used by OpenFOAM that are specific to POSIX compliant operating systems and need to be repl...
A multi-block mesh generator.
void removeFiles(const fileName &instanceDir) const
Remove all files from mesh instance.
A class for handling words, derived from string.
const word & constant() const
Return constant name.
void addZones(const List< pointZone *> &pz, const List< faceZone *> &fz, const List< cellZone *> &cz)
Add mesh zones.
const vectorField & cellCentres() const
forAllConstIter(PtrDictionary< phaseModel >, mixture.phases(), phase)
void setSize(const label)
Reset size of PtrList. If extending the PtrList, new entries are.
Creates a single block of cells from point coordinates, numbers of cells in each direction and an exp...
bool rmDir(const fileName &)
Remove a directory and its contents.
void setInstance(const fileName &)
Set the instance for mesh files.
const fileName & instance() const
A templated 1D list of pointers to objects of type <T>, where the size of the array is known and used...
const meshFaceZones & faceZones() const
Return face zones.
Direct mesh changes based on v1.3 polyTopoChange syntax.
label start() const
Return start label of this patch in the polyMesh face list.
IOobject systemDictIO(const word &dictName, const argList &args, const objectRegistry &ob, const word ®ionName=polyMesh::defaultRegion)
Mesh consisting of general polyhedral cells.
static void addBoolOption(const word &opt, const string &usage="")
Add to a bool option to validOptions with usage information.
static void addNote(const string &)
Add extra notes for the usage information.
A patch is a list of labels that address the faces in the global face list.
const word & zoneName() const
Return the (optional) zone name.
Foam::argList args(argc, argv)
fileName path() const
Return path.
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
const word dictName("noiseDict")
void shrink()
Shrink the allocated table to approx. twice number of elements.