This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/validationAndVerificationSuite/validation/overset/NACA4412-airfoil/implicitConservativeOverset/constant/oversetMeshDict
Vuko Vukcevic 095ac84cb4 Update to overset validationSuite NACA4412 case
Switched from old overlpa assembly to new adaptiveOverlap assembly
2018-07-30 09:11:05 +02:00

126 lines
3.5 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | foam-extend: Open Source CFD |
| \\ / O peration | Version: 4.1 |
| \\ / A nd | Web: http://www.foam-extend.org |
| \\/ M anipulation | For copyright notice see file Copyright |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object oversetMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
interpolation
{
interpolationSchemes (inverseDistance);
default inverseDistance;
}
// Names or patches that determine hole cells
holePatches ( airfoil );
regions
(
backgroundMesh
{
// Donor regions
donorRegions ( middleMesh );
fringe
{
type adaptiveOverlap;
// Optional list of patches to start the fringe minimisation from
initPatchNames ();
// Number of iterations for adaptive overlap search
specifiedIterationsNumber 12; // 5 by default
// Whether to try additional iterations
additionalIterations yes; // yes by default
// Orphan suitability
orphanSuitability 0; // 1 by default
donorSuitability
{
// Donor/acceptor pair must have cell volumes that differ not
// more than 20% of the larger cell
type cellVolumes;
threshold 0.2;
}
}
}
middleMesh
{
// Donor regions
donorRegions ( frontMesh backgroundMesh );
fringe
{
type adaptiveOverlap;
// Optional list of patches to start the fringe minimisation from
initPatchNames (OversetMiddle);
// Number of iterations for adaptive overlap search
specifiedIterationsNumber 5; // 5 by default
// Whether to try additional iterations
additionalIterations yes; // yes by default
// Orphan suitability
orphanSuitability 0; // 1 by default
donorSuitability
{
// Donor/acceptor pair must have cell volumes that are at least
// 60% within each other
type cellVolumes;
threshold 0.6;
}
}
}
frontMesh
{
// Donor regions
donorRegions ( middleMesh );
fringe
{
type adaptiveOverlap;
// Optional list of patches to start the fringe minimisation from
initPatchNames (OversetFront);
// Number of iterations for adaptive overlap search
specifiedIterationsNumber 5; // 5 by default
// Whether to try additional iterations
additionalIterations yes; // yes by default
// Orphan suitability
orphanSuitability 0; // 1 by default
donorSuitability
{
// Donor/acceptor pair must have cell volumes that are at least
// 40% within each other
type cellVolumes;
threshold 0.4;
}
}
}
);
// ************************************************************************* //