mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: snappyHexMesh: do not stop with single mesh error
This commit is contained in:
@ -1529,13 +1529,18 @@ void Foam::autoSnapDriver::doSnap
|
|||||||
|
|
||||||
if (!meshOk)
|
if (!meshOk)
|
||||||
{
|
{
|
||||||
Info<< "Did not succesfully snap mesh. Giving up."
|
WarningIn("autoSnapDriver::doSnap(..)")
|
||||||
<< nl << endl;
|
<< "Did not succesfully snap mesh."
|
||||||
|
<< " Continuing to snap to resolve easy surfaces but the"
|
||||||
// Use current mesh as base mesh
|
<< " resulting mesh will not satisfy your quality"
|
||||||
meshMover.correct();
|
<< " constraints" << nl << endl;
|
||||||
|
//Info<< "Did not succesfully snap mesh. Giving up."
|
||||||
break;
|
// << nl << endl;
|
||||||
|
//
|
||||||
|
//// Use current mesh as base mesh
|
||||||
|
//meshMover.correct();
|
||||||
|
//
|
||||||
|
//break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (debug&meshRefinement::MESH)
|
if (debug&meshRefinement::MESH)
|
||||||
|
|||||||
Reference in New Issue
Block a user