postProcess: Added '-list' option to list the available configured functionObjects

This commit is contained in:
Henry Weller
2016-06-01 16:28:07 +01:00
parent c7048a7b93
commit 6000ea217f
5 changed files with 71 additions and 4 deletions

View File

@ -3,24 +3,29 @@ Foam::argList::addOption
(
"field",
"name",
"specify the name of the field to be processed, e.g. U"
"Specify the name of the field to be processed, e.g. U"
);
Foam::argList::addOption
(
"fields",
"list",
"specify a list of fields to be processed, e.g. '(U T p)' - "
"Specify a list of fields to be processed, e.g. '(U T p)' - "
"regular expressions not currently supported"
);
Foam::argList::addOption
(
"func",
"name",
"specify the name of the functionObject to execute, e.g. Q"
"Specify the name of the functionObject to execute, e.g. Q"
);
Foam::argList::addOption
(
"funcs",
"list",
"specify the names of the functionObjects to execute, e.g. '(Q div(U))'"
"Specify the names of the functionObjects to execute, e.g. '(Q div(U))'"
);
Foam::argList::addBoolOption
(
"list",
"List the available configured functionObjects"
);