42 lines
1.2 KiB
C++
42 lines
1.2 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: plus |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object createPatchDict;
|
|
}
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
pointSync false;
|
|
|
|
// Patches to create.
|
|
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 = set : name of faceSet
|
|
set inlet;
|
|
}
|
|
);
|
|
|
|
// ************************************************************************* //
|