Working with cyclicAMI [2]
This commit is contained in:
parent
bddad0d846
commit
c99abd800f
28
src/simpleCubicFoam/system/collapseDict
Normal file
28
src/simpleCubicFoam/system/collapseDict
Normal 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;
|
||||
}
|
||||
|
||||
|
||||
// ************************************************************************* //
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user