mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Revert "ENH: match defaultMatchTol public."
This reverts commit 8c8a4a00c8.
This commit is contained in:
@ -34,7 +34,7 @@ namespace Foam
|
||||
{
|
||||
defineTypeNameAndDebug(coupledPolyPatch, 0);
|
||||
|
||||
scalar coupledPolyPatch::defaultMatchTol = 1E-4;
|
||||
const scalar coupledPolyPatch::defaultMatchTol_ = 1E-4;
|
||||
|
||||
template<>
|
||||
const char* NamedEnum<coupledPolyPatch::transformType, 4>::names[] =
|
||||
@ -403,7 +403,7 @@ Foam::coupledPolyPatch::coupledPolyPatch
|
||||
)
|
||||
:
|
||||
polyPatch(name, size, start, index, bm),
|
||||
matchTolerance_(defaultMatchTol)
|
||||
matchTolerance_(defaultMatchTol_)
|
||||
{}
|
||||
|
||||
|
||||
@ -416,7 +416,7 @@ Foam::coupledPolyPatch::coupledPolyPatch
|
||||
)
|
||||
:
|
||||
polyPatch(name, dict, index, bm),
|
||||
matchTolerance_(dict.lookupOrDefault("matchTolerance", defaultMatchTol))
|
||||
matchTolerance_(dict.lookupOrDefault("matchTolerance", defaultMatchTol_))
|
||||
{}
|
||||
|
||||
|
||||
@ -470,7 +470,7 @@ Foam::coupledPolyPatch::~coupledPolyPatch()
|
||||
void Foam::coupledPolyPatch::write(Ostream& os) const
|
||||
{
|
||||
polyPatch::write(os);
|
||||
//if (matchTolerance_ != defaultMatchTol)
|
||||
//if (matchTolerance_ != defaultMatchTol_)
|
||||
{
|
||||
os.writeKeyword("matchTolerance") << matchTolerance_
|
||||
<< token::END_STATEMENT << nl;
|
||||
|
||||
@ -69,6 +69,9 @@ private:
|
||||
|
||||
// Private data
|
||||
|
||||
//- default matching tolerance
|
||||
static const scalar defaultMatchTol_;
|
||||
|
||||
//- local matching tolerance
|
||||
const scalar matchTolerance_;
|
||||
|
||||
@ -179,8 +182,6 @@ public:
|
||||
//- Runtime type information
|
||||
TypeName("coupled");
|
||||
|
||||
//- default matching tolerance
|
||||
static scalar defaultMatchTol;
|
||||
|
||||
// Constructors
|
||||
|
||||
|
||||
@ -1458,8 +1458,6 @@ Foam::labelHashSet Foam::conformalVoronoiMesh::checkPolyMeshQuality
|
||||
|
||||
label nValidPatches = 0;
|
||||
|
||||
// coupledPolyPatch::defaultMatchTol = 1e-3;
|
||||
|
||||
forAll(patches, p)
|
||||
{
|
||||
if (patchTypes[p] == processorPolyPatch::typeName)
|
||||
|
||||
Reference in New Issue
Block a user