STYLE: snappyHexMesh: comment

This commit is contained in:
mattijs
2013-03-26 14:57:21 +00:00
parent 08655f2748
commit 6bf17082e1
2 changed files with 16 additions and 3 deletions

View File

@ -1287,7 +1287,7 @@ void Foam::autoLayerDriver::shrinkMeshMedialDistance
+ ".obj"
)
);
Info<< "Writing points with too large a extrusion distance to "
Info<< "Writing points with too large an extrusion distance to "
<< str().name() << endl;
}
@ -1304,7 +1304,7 @@ void Foam::autoLayerDriver::shrinkMeshMedialDistance
+ ".obj"
)
);
Info<< "Writing points with too large a extrusion distance to "
Info<< "Writing points with too large an extrusion distance to "
<< medialVecStr().name() << endl;
}

View File

@ -2,7 +2,7 @@
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
@ -1360,6 +1360,19 @@ void Foam::autoSnapDriver::doSnap
regionSide
);
meshRefinement::updateList(mapPtr().faceMap(), -1, filterFace);
if (debug&meshRefinement::MESH)
{
const_cast<Time&>(mesh.time())++;
Pout<< "Writing duplicatedPoints mesh to time "
<< meshRefiner_.timeName()
<< endl;
meshRefiner_.write
(
debug, mesh.time().path()
/"duplicatedPoints"
);
}
}