mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
Revert "meshQualityDict.cfg: disabled minTetQuality since tracking works without it"
This reverts commit 04954fbd19.
This commit is contained in:
@ -27,7 +27,7 @@ minVol 1e-13;
|
|||||||
|
|
||||||
// 1e-15 (small positive) to enable tracking
|
// 1e-15 (small positive) to enable tracking
|
||||||
// -1e+30 (large negative) for best layer insertion
|
// -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
|
// if >0 : preserve single cells with all points on the surface if the
|
||||||
// resulting volume after snapping (by approximation) is larger than
|
// resulting volume after snapping (by approximation) is larger than
|
||||||
|
|||||||
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
// ************************************************************************* //
|
|
||||||
Reference in New Issue
Block a user