mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: add notes to some (most) command-line options
- mapFields and splitMeshRegions need more clarification
This commit is contained in:
@ -175,10 +175,18 @@ int main(int argc, char *argv[])
|
||||
argList::noParallel();
|
||||
|
||||
argList::validArgs.clear();
|
||||
argList::validArgs.append("surface file");
|
||||
argList::validArgs.append("surfaceFile");
|
||||
|
||||
argList::addBoolOption("checkSelfIntersection");
|
||||
argList::addBoolOption("verbose");
|
||||
argList::addBoolOption
|
||||
(
|
||||
"checkSelfIntersection",
|
||||
"also check for self-intersection"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"verbose",
|
||||
"verbose operation"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"blockMesh",
|
||||
@ -224,8 +232,8 @@ int main(int argc, char *argv[])
|
||||
<<" hex (0 1 2 3 4 5 6 7) (10 10 10) simpleGrading (1 1 1)\n"
|
||||
<<");\n" << nl;
|
||||
|
||||
Info<<"edges();" << nl
|
||||
<<"patches();" << endl;
|
||||
Info<<"edges\n();" << nl
|
||||
<<"patches\n();" << endl;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user