createPatch: Simplification and removed unused dictionaries

The 'pointSync' setting in createPatchDict is now optional and defaults
to false. This setting is very rarely used. A number of unused
'createPatchDict' files have also been removed and obsolete information
has been removed from the annotated example dictionaries.
This commit is contained in:
Will Bainbridge
2022-05-20 12:57:55 +01:00
parent f54376b20c
commit 9302074836
14 changed files with 50 additions and 486 deletions

View File

@ -13,32 +13,38 @@ FoamFile
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
pointSync false;
writeCyclicMatch false;
patches
(
{
// Name of new patch
name inlet;
// Dictionary to construct new patch from
patchInfo
{
type patch;
}
// How to construct: either from 'patches' or 'set'
constructFrom set;
// If constructFrom = set : name of faceSet
set inlet;
}
{
// Name of new patch
name outlet;
// Dictionary to construct new patch from
patchInfo
{
type patch;
}
// How to construct: either from 'patches' or 'set'
constructFrom set;
// If constructFrom = set : name of faceSet
set outlet;
}
);