db7fac3f24
git-svn-id: https://openfoam-extend.svn.sourceforge.net/svnroot/openfoam-extend/trunk/Core/OpenFOAM-1.5-dev@1731 e4e07f05-0c2f-0410-a05a-b8ba57e0c909
67 lines
1.8 KiB
Text
67 lines
1.8 KiB
Text
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.0 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
|
|
root "/home/penfold/mattijs/foam/mattijs2.1/run/icoFoam";
|
|
case "cavity";
|
|
instance "system";
|
|
local "";
|
|
|
|
class dictionary;
|
|
object createPatcheDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Tolerance used in matching faces. Absolute tolerance is span of
|
|
// face times this factor.
|
|
matchTolerance 1E-3;
|
|
|
|
// Do a synchronisation of coupled points.
|
|
pointSync true;
|
|
|
|
|
|
// Patches to create.
|
|
// If no patches does a coupled point and face synchronisation anyway.
|
|
patches
|
|
(
|
|
{
|
|
// Name of new patch
|
|
name leftRight0;
|
|
|
|
// Type of new patch
|
|
type cyclic;
|
|
|
|
// How to construct: either 'patches' or 'set'
|
|
constructFrom patches;
|
|
|
|
// If constructFrom = patches : names of patches
|
|
patches (half0 half1);
|
|
|
|
// If constructFrom = set : name of faceSet
|
|
set f0;
|
|
}
|
|
|
|
{
|
|
name bottom;
|
|
type patch;
|
|
|
|
constructFrom set;
|
|
|
|
patches (half0 half1);
|
|
|
|
set bottomFaces;
|
|
}
|
|
|
|
);
|
|
|
|
// ************************************************************************* //
|