59 lines
1.6 KiB
INI
59 lines
1.6 KiB
INI
/*---------------------------------------------------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: 1.0 |
|
|
| \\ / A nd | Web: http://www.openfoam.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
patchDescription
|
|
{
|
|
type dictionary;
|
|
description "Description of operation to create patch";
|
|
entries
|
|
{
|
|
name
|
|
{
|
|
type word;
|
|
description "Name of new patch";
|
|
}
|
|
|
|
type
|
|
{
|
|
type word;
|
|
description "Type of new patch";
|
|
valueList
|
|
(
|
|
patch
|
|
cyclic
|
|
symmetryPlane
|
|
wedge
|
|
wall
|
|
empty
|
|
);
|
|
}
|
|
|
|
constructFrom
|
|
{
|
|
type word;
|
|
description "What the patch is constructed from";
|
|
valueList
|
|
(
|
|
patches
|
|
set
|
|
);
|
|
}
|
|
|
|
patches
|
|
{
|
|
type list;
|
|
description "patch names for constructFrom patches";
|
|
elementType word;
|
|
}
|
|
|
|
include "set.cfg";
|
|
}
|
|
}
|
|
|
|
// ************************************************************************* //
|