55 static const scalar edgeTol = 1e-3;
59 void printEdgeStats(
const polyMesh& mesh)
75 static const vector z(0, 0, 1);
77 scalar minOther = great;
78 scalar maxOther = -great;
86 if (isMasterEdge[edgeI])
88 const edge& e = edges[edgeI];
92 scalar eMag =
mag(eVec);
96 if (
mag(eVec & x) > 1-edgeTol)
98 minX =
min(minX, eMag);
99 maxX =
max(maxX, eMag);
102 else if (
mag(eVec & y) > 1-edgeTol)
104 minY =
min(minY, eMag);
105 maxY =
max(maxY, eMag);
108 else if (
mag(eVec & z) > 1-edgeTol)
110 minZ =
min(minZ, eMag);
111 maxZ =
max(maxZ, eMag);
116 minOther =
min(minOther, eMag);
117 maxOther =
max(maxOther, eMag);
141 Info<<
"Mesh edge statistics:" <<
nl 142 <<
" x aligned : number:" << nX <<
"\tminLen:" << minX
143 <<
"\tmaxLen:" << maxX <<
nl 144 <<
" y aligned : number:" << nY <<
"\tminLen:" << minY
145 <<
"\tmaxLen:" << maxY <<
nl 146 <<
" z aligned : number:" << nZ <<
"\tminLen:" << minZ
147 <<
"\tmaxLen:" << maxZ <<
nl 148 <<
" other : number:" << nEdges - nX - nY - nZ
149 <<
"\tminLen:" << minOther
150 <<
"\tmaxLen:" << maxOther <<
nl <<
endl;
154 int main(
int argc,
char *argv[])
158 "refine cells in multiple directions" 177 printEdgeStats(mesh);
198 Info<<
"Refining according to " << dictIO.path() <<
nl <<
endl;
204 <<
"Cannot open specified refinement dictionary " 208 else if (!refineAllCells)
212 Info<<
"Refining according to " << dictIO.path() <<
nl <<
endl;
217 Info<<
"Refinement dictionary " << dictIO.path() <<
" not found" 222 if (refineDict.size())
229 <<
" cells from cellSet " 233 refCells =
cells.toc();
244 Info<<
"3D case; refining all directions" <<
nl <<
endl;
253 refineDict.
add(
"useHexTopology",
"true");
263 Info<<
"2D case; refining in directions y,z\n" <<
endl;
267 else if (dirs.y() == -1)
269 Info<<
"2D case; refining in directions x,z\n" <<
endl;
275 Info<<
"2D case; refining in directions x,y\n" <<
endl;
283 refineDict.
add(
"useHexTopology",
"false");
286 refineDict.
add(
"coordinateSystem",
"global");
291 refineDict.
add(
"globalCoeffs", coeffsDict);
293 refineDict.
add(
"geometricCut",
"false");
294 refineDict.
add(
"writeMesh",
"false");
324 cellSet newCells(mesh,
"refinedCells", refCells.
size());
326 forAll(oldToNew, oldCelli)
328 const labelList& added = oldToNew[oldCelli];
332 newCells.insert(added[i]);
336 Info<<
"Writing refined cells (" 339 << newCells.instance()/newCells.local()/newCells.name()
364 "From cells in mesh at " 366 +
" to cells in mesh at " 370 forAll(oldToNew, oldCelli)
372 const labelList& added = oldToNew[oldCelli];
378 newToOld[added[i]] = oldCelli;
384 newToOld[oldCelli] = oldCelli;
388 Info<<
"Writing map from new to old cell to " 389 << newToOld.localObjectPath() <<
nl <<
endl;
393 printEdgeStats(mesh);
#define forAll(list, i)
Loop across all elements in list.
virtual Ostream & write(const char)=0
Write character.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
errorManipArg< error, int > exit(error &err, const int errNo=1)
void off()
Switch the function objects off.
A list of keyword definitions, which are a keyword followed by any number of values (e...
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
static word meshSubDir
Return the mesh sub-directory name (usually "polyMesh")
Does multiple pass refinement to refine cells in multiple directions.
void size(const label)
Override size to be inconsistent with allocated storage.
Set of directions for each cell in the mesh. Either uniform and size=1 or one set of directions per c...
Ostream & endl(Ostream &os)
Add newline and flush stream.
bool optionFound(const word &opt) const
Return true if the named option is found.
labelList identity(const label len)
Create identity map (map[i] == i) of given length.
static word timeName(const scalar, const int precision=precision_)
Return time name of given scalar time.
Vector< scalar > vector
A scalar version of the templated Vector.
label nGeometricD() const
Return the number of valid geometric dimensions in the mesh.
bool add(entry *, bool mergeEntry=false)
Add a new entry.
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
virtual const pointField & points() const
Return raw points.
const Vector< label > & geometricD() const
Return the vector of geometric directions in mesh.
string & note()
Return non-constant access to the optional note.
const fileName & pointsInstance() const
Return the current instance directory for points.
An edge is a list of two point labels. The functionality it provides supports the discretisation on a...
A class for handling words, derived from string.
vector vec(const pointField &) const
Return the vector (end - start)
dimensioned< Type > min(const dimensioned< Type > &, const dimensioned< Type > &)
void reduce(const List< UPstream::commsStruct > &comms, T &Value, const BinaryOp &bop, const int tag, const label comm)
void setInstance(const fileName &)
Set the instance for mesh files.
const edgeList & edges() const
Return mesh edges. Uses calcEdges.
const functionObjectList & functionObjects() const
Return the list of function objects.
A collection of cell labels.
dimensioned< scalar > mag(const dimensioned< Type > &)
IOobject systemDictIO(const word &dictName, const argList &args, const objectRegistry &ob, const word ®ionName=polyMesh::defaultRegion)
T returnReduce(const T &Value, const BinaryOp &bop, const int tag=Pstream::msgType(), const label comm=UPstream::worldComm)
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.
virtual bool write(const bool write=true) const
Write using setting from DB.
Foam::argList args(argc, argv)
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
const word dictName("noiseDict")
ITstream & lookup(const word &, bool recursive=false, bool patternMatch=true) const
Find and return an entry data stream.