44 lines
1.3 KiB
C++
44 lines
1.3 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: v2106 |
|
|
| \\ / A nd | Website: www.openfoam.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object createPatchDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
pointSync false;
|
|
|
|
patches
|
|
(
|
|
{
|
|
// Name of new patch
|
|
name inlet;
|
|
|
|
// Type of new patch
|
|
patchInfo
|
|
{
|
|
type patch;
|
|
}
|
|
|
|
// How to construct: either from 'patches' or 'set'
|
|
constructFrom set;
|
|
|
|
// If constructFrom = patches : names of patches. Wildcards allowed.
|
|
patches ("periodic.*");
|
|
|
|
// If constructFrom = set : name of faceSet
|
|
set f0;
|
|
}
|
|
);
|
|
|
|
|
|
// ************************************************************************* //
|