mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-12-28 03:37:59 +00:00
postProcess: Added '-list' option to list the available configured functionObjects
This commit is contained in:
@ -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"
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user