Skip to content
Snippets Groups Projects
Commit 891e41e7 authored by Henry's avatar Henry
Browse files

blockMeshMerge: Adjusted merge-tolerance

Resolves bug-report http://www.openfoam.org/mantisbt/view.php?id=1443
parent def8026f
Branches
Tags
No related merge requests found
......@@ -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-2015 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
......@@ -118,7 +118,7 @@ void Foam::blockMesh::calcMergeInfo()
// the size of the block.
boundBox bb(blockCells[blockPlabel].points(blockFaces, blockPoints));
const scalar mergeSqrDist = magSqr(SMALL*bb.span());
const scalar mergeSqrDist = magSqr(10*SMALL*bb.span());
// This is an N^2 algorithm
......@@ -582,4 +582,5 @@ void Foam::blockMesh::calcMergeInfo()
}
// ************************************************************************* //
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment