mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: conformalVoronoiMesh.C: have negative mixed points coeff disable specialised handling
This commit is contained in:
@ -954,9 +954,12 @@ void Foam::conformalVoronoiMesh::createMixedFeaturePoints
|
||||
DynamicList<label>& types
|
||||
)
|
||||
{
|
||||
Info<< "SKIP MIXED FEATURE POINTS" << endl;
|
||||
|
||||
return;
|
||||
if (cvMeshControls().mixedFeaturePointPPDistanceCoeff() < 0)
|
||||
{
|
||||
Info<<nl << "Skipping specialised handling for mixed feature points"
|
||||
<< endl;
|
||||
return;
|
||||
}
|
||||
|
||||
const PtrList<extendedFeatureEdgeMesh>& feMeshes
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user