STYLE: add usage information for subsetMesh argument

This commit is contained in:
Mark Olesen
2018-12-19 15:15:28 +01:00
parent e8f25b1385
commit 7ee1ec92ec

View File

@ -380,26 +380,33 @@ int main(int argc, char *argv[])
#include "addOverwriteOption.H" #include "addOverwriteOption.H"
#include "addRegionOption.H" #include "addRegionOption.H"
argList::addArgument("setOrZoneName"); argList::addArgument
(
"cell-selection",
"The cellSet name, but with the -zone option this is interpreted"
" to be a cellZone selection by name(s) or regex.\n"
"Eg 'mixer' or '( mixer \"moving.*\" )'"
);
argList::addOption argList::addOption
( (
"patch", "patch",
"name", "name",
"Add exposed internal faces to specified patch " "Add exposed internal faces to specified patch"
"instead of \"oldInternalFaces\"" " instead of \"oldInternalFaces\""
); );
argList::addOption argList::addOption
( (
"patches", "patches",
"wordRes", "wordRes",
"Add exposed internal faces to closest of specified patches " "Add exposed internal faces to closest of specified patches"
"instead of \"oldInternalFaces\"" " instead of \"oldInternalFaces\""
); );
argList::addBoolOption argList::addBoolOption
( (
"zone", "zone",
"Subset with cellZone(s) instead of cellSet. " "Subset with cellZone(s) instead of cellSet."
"The command argument may be a list of words or regexs" " The command argument may be a list of words or regexs"
); );
argList::addOption argList::addOption
( (