Revert "meshQualityDict.cfg: disabled minTetQuality since tracking works without it"

This reverts commit 04954fbd19.
This commit is contained in:
Chris Greenshields
2018-06-09 14:32:36 +01:00
parent 04954fbd19
commit 76cb711875
3 changed files with 1 additions and 94 deletions

View File

@ -27,7 +27,7 @@ minVol 1e-13;
// 1e-15 (small positive) to enable tracking
// -1e+30 (large negative) for best layer insertion
minTetQuality -1e30;
minTetQuality 1e-15;
// if >0 : preserve single cells with all points on the surface if the
// resulting volume after snapping (by approximation) is larger than

View File

@ -1,46 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object createBafflesDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
internalFacesOnly true;
baffles
{
baffleFaces
{
type faceZone;
zoneName rotatingZone;
patches
{
master
{
name AMI1;
type cyclicAMI;
matchTolerance 0.0001;
neighbourPatch AMI2;
transform noOrdering;
}
slave
{
$master;
name AMI2;
neighbourPatch AMI1;
}
}
}
}
// ************************************************************************* //

View File

@ -1,47 +0,0 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: dev |
| \\ / A nd | Web: www.OpenFOAM.org |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object createBafflesDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
// Whether to convert internal faces only (so leave boundary faces intact).
// This is only relevant if your face selection type can pick up boundary
// faces.
internalFacesOnly true;
// Example using "blades" as name of baffle patch
baffles
{
baffles // group name
{
//- Use predefined faceZone to select faces and orientation.
type faceZone;
zoneName blades;
patches
{
master
{
name blades; // patch name
type wall;
}
slave
{
$master;
}
}
}
}
// ************************************************************************* //