mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
57 lines
1.3 KiB
C++
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);
|
|
}
|
|
);
|
|
|
|
|
|
// ************************************************************************* //
|