L-Nafaryus
7f75e9c790
New: submeshes Fix: salome current version Mod: default values for mesh parameters - less values in main config Fix: smesh_* style for boundary groups Move: notes to real notes, reserve docs for docs
169 lines
3.1 KiB
C++
169 lines
3.1 KiB
C++
/*--------------------------------*- 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 defaultFaces;
|
|
|
|
patchInfo
|
|
{
|
|
type empty;
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (defaultFaces);
|
|
}
|
|
|
|
{
|
|
name inlet;
|
|
|
|
patchInfo
|
|
{
|
|
type patch;
|
|
inGroups (inlet);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_inlet);
|
|
}
|
|
|
|
{
|
|
name outlet;
|
|
|
|
|
|
patchInfo
|
|
{
|
|
type patch;
|
|
inGroups (outlet);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_outlet);
|
|
}
|
|
|
|
{
|
|
name wall;
|
|
|
|
patchInfo
|
|
{
|
|
type wall;
|
|
inGroups (wall);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_wall);
|
|
}
|
|
|
|
{
|
|
name symetry0;
|
|
|
|
patchInfo
|
|
{
|
|
type symetryPlane;
|
|
inGroups (symetryPlane);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_symetry0);
|
|
}
|
|
|
|
{
|
|
name symetry1;
|
|
|
|
patchInfo
|
|
{
|
|
type symetryPlane;
|
|
inGroups (symetryPlane);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_symetry1);
|
|
}
|
|
|
|
{
|
|
name symetry2;
|
|
|
|
patchInfo
|
|
{
|
|
type symetryPlane;
|
|
inGroups (symetryPlane);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_symetry2);
|
|
}
|
|
|
|
{
|
|
name symetry3;
|
|
|
|
patchInfo
|
|
{
|
|
type symetryPlane;
|
|
inGroups (symetryPlane);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_symetry3);
|
|
}
|
|
|
|
{
|
|
name symetry4;
|
|
|
|
patchInfo
|
|
{
|
|
type symetryPlane;
|
|
inGroups (symetryPlane);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_symetry4);
|
|
}
|
|
|
|
{
|
|
name symetry5;
|
|
|
|
patchInfo
|
|
{
|
|
type symetryPlane;
|
|
inGroups (symetryPlane);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_symetry5);
|
|
}
|
|
|
|
{
|
|
name strips;
|
|
|
|
patchInfo
|
|
{
|
|
type wall;
|
|
inGroups (wall);
|
|
}
|
|
|
|
constructFrom patches;
|
|
patches (smesh_strips);
|
|
}
|
|
|
|
|
|
);
|
|
|
|
// ************************************************************************* //
|