mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: Add help to command-line arguments
This commit is contained in:
@ -358,9 +358,22 @@ int main(int argc, char *argv[])
|
|||||||
timeSelector::addOptions(true, false);
|
timeSelector::addOptions(true, false);
|
||||||
|
|
||||||
argList::validArgs.append("feature angle[0-180]");
|
argList::validArgs.append("feature angle[0-180]");
|
||||||
argList::addBoolOption("splitAllFaces");
|
argList::addBoolOption
|
||||||
argList::addBoolOption("concaveMultiCells");
|
(
|
||||||
argList::addBoolOption("doNotPreserveFaceZones");
|
"splitAllFaces",
|
||||||
|
"have multiple faces inbetween cells"
|
||||||
|
);
|
||||||
|
argList::addBoolOption
|
||||||
|
(
|
||||||
|
"concaveMultiCells",
|
||||||
|
"split cells on concave boundary edges into multiple cells"
|
||||||
|
);
|
||||||
|
argList::addBoolOption
|
||||||
|
(
|
||||||
|
"doNotPreserveFaceZones",
|
||||||
|
"disable the default behaviour of preserving faceZones by having"
|
||||||
|
" multiple faces inbetween cells"
|
||||||
|
);
|
||||||
|
|
||||||
# include "setRootCase.H"
|
# include "setRootCase.H"
|
||||||
# include "createTime.H"
|
# include "createTime.H"
|
||||||
|
|||||||
Reference in New Issue
Block a user