ENH: tag some options as 'advanced' (only shown with -help-full)

General:
    * -roots, -hostRoots, -fileHandler

Specific:
    * -to <coordinateSystem> -from <coordinateSystem>

- Display -help-compat when compatibility or ignored options are available

STYLE: capitalization of options text
This commit is contained in:
Mark Olesen
2018-07-31 11:54:15 +02:00
parent d40103a86f
commit cb919a6c41
98 changed files with 403 additions and 385 deletions

View File

@ -82,23 +82,23 @@ int main(int argc, char *argv[])
argList::addBoolOption
(
"blockTopology",
"write block edges and centres as .obj files"
"Write block edges and centres as .obj files"
);
argList::addBoolOption
(
"noClean",
"keep the existing files in the polyMesh"
"Keep the existing files in the polyMesh"
);
argList::addOption
(
"dict",
"file",
"specify alternative dictionary for the blockMesh description"
"Specify alternative dictionary for the blockMesh description"
);
argList::addBoolOption
(
"sets",
"write cellZones as cellSets too (for processing purposes)"
"Write cellZones as cellSets too (for processing purposes)"
);
argList::addNote
(

View File

@ -45,16 +45,16 @@ using namespace Foam;
int main(int argc, char *argv[])
{
Foam::argList::addBoolOption
argList::addBoolOption
(
"checkGeometry",
"check all surface geometry for quality"
"Check all surface geometry for quality"
);
Foam::argList::addBoolOption
argList::addBoolOption
(
"conformationOnly",
"conform to the initial points without any point motion"
"Conform to the initial points without any point motion"
);
#include "setRootCase.H"

View File

@ -387,14 +387,13 @@ int main(int argc, char *argv[])
argList::addBoolOption
(
"writeMesh",
"write the resulting mesh and distance fields"
"Write the resulting mesh and distance fields"
);
argList::addOption
(
"mergeTol",
"scalar",
"specify the merge distance relative to the bounding box size "
"(default 1e-6)"
"The merge distance relative to the bounding box size (default 1e-6)"
);
#include "setRootCase.H"

View File

@ -679,28 +679,28 @@ int main(int argc, char *argv[])
{
#include "addRegionOption.H"
#include "addOverwriteOption.H"
Foam::argList::addBoolOption
argList::addBoolOption
(
"checkGeometry",
"check all surface geometry for quality"
"Check all surface geometry for quality"
);
Foam::argList::addOption
argList::addOption
(
"surfaceSimplify",
"boundBox",
"simplify the surface using snappyHexMesh starting from a boundBox"
"Simplify the surface using snappyHexMesh starting from a boundBox"
);
Foam::argList::addOption
argList::addOption
(
"patches",
"(patch0 .. patchN)",
"only triangulate selected patches (wildcards supported)"
"Only triangulate selected patches (wildcards supported)"
);
Foam::argList::addOption
argList::addOption
(
"outFile",
"file",
"name of the file to save the simplified surface to"
"Name of the file to save the simplified surface to"
);
#include "addProfilingOption.H"
#include "addDictOption.H"