Working with cyclicAMI [2]

This commit is contained in:
L-Nafaryus 2021-03-12 14:43:05 +05:00
parent bddad0d846
commit c99abd800f
2 changed files with 32 additions and 4 deletions

View File

@ -0,0 +1,28 @@
/*--------------------------------*- C++ -*----------------------------------*\
| ========= | |
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \\ / O peration | Version: v2012 |
| \\ / A nd | Website: www.openfoam.com |
| \\/ M anipulation | |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object collapseDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
collapseEdgesCoeffs
{
// Edges shorter than this absolute value will be merged
minimumEdgeLength 2e-7;
// The maximum angle between two edges that share a point attached to
// no other edges
maximumMergeAngle 5;
}
// ************************************************************************* //

View File

@ -54,7 +54,7 @@ patches
type cyclicAMI;
neighbourPatch cyclicPlaneBW;
transform translational;
separationVector (-2 2 0);
separationVector (2 2 0);
matchTolerance 1e-4;
inGroups (cyclic);
}
@ -71,7 +71,7 @@ patches
type cyclicAMI;
neighbourPatch cyclicPlaneFW;
transform translational;
separationVector (2 -2 0);
separationVector (-2 -2 0);
matchTolerance 1e-4;
inGroups (cyclic);
}
@ -88,7 +88,7 @@ patches
type cyclicAMI;
neighbourPatch cyclicPlaneR;
transform translational;
separationVector (2 2 0);
separationVector (-2 2 0);
matchTolerance 1e-4;
inGroups (cyclic);
}
@ -105,7 +105,7 @@ patches
type cyclicAMI;
neighbourPatch cyclicPlaneL;
transform translational;
separationVector (-2 -2 0);
separationVector (2 -2 0);
matchTolerance 1e-4;
inGroups (cyclic);
}