Files
OpenFOAM-6/etc/caseDicts/mesh/manipulation/AMI/createPatchDict
2018-07-09 15:58:01 +01:00

57 lines
1.3 KiB
C++

/*--------------------------------*- C++ -*----------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Version: 6
\\/ M anipulation |
\*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object createPatchDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
pointSync false;
// AMI created from internal boundary with cylinder and cylinder_slave patches
masterAMI
{
name AMI1;
patchInfo
{
type cyclicAMI;
matchTolerance 0.0001;
neighbourPatch AMI2;
transform noOrdering;
}
constructFrom patches;
patches (cylinder);
}
patches
(
// master AMI patch
{
$masterAMI;
}
// slave AMI patch
{
$masterAMI;
name AMI2;
patchInfo
{
neighbourPatch AMI1;
}
patches (cylinder_slave);
}
);
// ************************************************************************* //