46 lines
1.1 KiB
C++
46 lines
1.1 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration | Website: https://openfoam.org
|
|
\\ / A nd | Version: dev
|
|
\\/ M anipulation |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
format ascii;
|
|
class dictionary;
|
|
object createBafflesDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
internalFacesOnly true;
|
|
|
|
fields true;
|
|
|
|
baffles
|
|
{
|
|
baffleFaces
|
|
{
|
|
type faceZone;
|
|
zoneName rotatingZone;
|
|
|
|
patches
|
|
{
|
|
master
|
|
{
|
|
name AMI1;
|
|
type cyclicAMI;
|
|
neighbourPatch AMI2;
|
|
}
|
|
slave
|
|
{
|
|
name AMI2;
|
|
type cyclicAMI;
|
|
neighbourPatch AMI1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|