/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: 2.2.0 | | \\ / A nd | Web: www.OpenFOAM.org | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class dictionary; object createBafflesDict; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // // Whether to convert internal faces only (so leave boundary faces intact). // This is only relevant if your face selection type can pick up boundary // faces. internalFacesOnly true; // Baffles to create. baffles { baffleFaces { //- Use predefined faceZone to select faces and orientation. type faceZone; zoneName rotatingCells; patches { master { name AMI1; type cyclicAMI; neighbourPatch AMI2; } slave { name AMI2; type cyclicAMI; neighbourPatch AMI1; } } } } // ************************************************************************* //