mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
48 lines
1.5 KiB
C++
48 lines
1.5 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 6 |
|
|
| \\ / A nd | Website: https://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;
|
|
|
|
// Example using "blades" as name of baffle patch
|
|
baffles
|
|
{
|
|
baffles // group name
|
|
{
|
|
//- Use predefined faceZone to select faces and orientation.
|
|
type faceZone;
|
|
zoneName blades;
|
|
|
|
patches
|
|
{
|
|
master
|
|
{
|
|
name blades; // patch name
|
|
type wall;
|
|
}
|
|
slave
|
|
{
|
|
$master;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|