2021-03-07 16:29:04 +05:00
|
|
|
/*--------------------------------*- C++ -*----------------------------------*\
|
|
|
|
| ========= | |
|
|
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
|
|
| \\ / O peration | Version: v2012 |
|
|
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
|
|
| \\/ M anipulation | |
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
FoamFile
|
|
|
|
{
|
|
|
|
version 2.0;
|
|
|
|
format ascii;
|
|
|
|
class dictionary;
|
|
|
|
object createPatchDict;
|
|
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
|
|
|
|
pointSync false;
|
|
|
|
|
|
|
|
// Patches to create.
|
|
|
|
patches
|
|
|
|
(
|
|
|
|
{
|
|
|
|
name inlet;
|
|
|
|
|
|
|
|
patchInfo
|
|
|
|
{
|
|
|
|
type patch;
|
|
|
|
inGroups (inlet);
|
|
|
|
}
|
|
|
|
|
|
|
|
constructFrom patches;
|
|
|
|
patches (inlet_);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
name outlet;
|
|
|
|
|
|
|
|
|
|
|
|
patchInfo
|
|
|
|
{
|
|
|
|
type patch;
|
|
|
|
inGroups (outlet);
|
|
|
|
}
|
|
|
|
|
|
|
|
constructFrom patches;
|
|
|
|
patches (outlet_);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
name symetryPlaneFW;
|
2021-03-07 16:29:04 +05:00
|
|
|
|
|
|
|
patchInfo
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
type symetryPlane;
|
|
|
|
inGroups (symetryPlane);
|
2021-03-07 16:29:04 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
constructFrom patches;
|
|
|
|
patches (symetryPlaneFW_);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
name symetryPlaneBW;
|
2021-03-07 16:29:04 +05:00
|
|
|
|
|
|
|
patchInfo
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
type symetryPlane;
|
|
|
|
inGroups (symetryPlane);
|
2021-03-07 16:29:04 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
constructFrom patches;
|
|
|
|
patches (symetryPlaneBW_);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
name symetryPlaneL;
|
2021-03-07 16:29:04 +05:00
|
|
|
|
|
|
|
patchInfo
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
type symetryPlane;
|
|
|
|
inGroups (symetryPlane);
|
2021-03-07 16:29:04 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
constructFrom patches;
|
|
|
|
patches (symetryPlaneL_);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
name symetryPlaneR;
|
2021-03-07 16:29:04 +05:00
|
|
|
|
|
|
|
patchInfo
|
|
|
|
{
|
2021-03-25 23:22:21 +05:00
|
|
|
type symetryPlane;
|
|
|
|
inGroups (symetryPlane);
|
2021-03-07 16:29:04 +05:00
|
|
|
}
|
|
|
|
|
|
|
|
constructFrom patches;
|
|
|
|
patches (symetryPlaneR_);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
name wall;
|
|
|
|
|
|
|
|
patchInfo
|
|
|
|
{
|
|
|
|
type wall;
|
|
|
|
inGroups (wall);
|
|
|
|
}
|
|
|
|
|
|
|
|
constructFrom patches;
|
|
|
|
patches (wall_);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
// ************************************************************************* //
|