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

@ -226,7 +226,7 @@ int main(int argc, char *argv[])
{
argList::addNote
(
"decompose a mesh and fields of a case for parallel execution"
"Decompose a mesh and fields of a case for parallel execution"
);
argList::noParallel();
@ -234,13 +234,13 @@ int main(int argc, char *argv[])
(
"decomposeParDict",
"file",
"read decomposePar dictionary from specified location"
"Use specified file for decomposePar dictionary"
);
#include "addRegionOption.H"
argList::addBoolOption
(
"allRegions",
"operate on all regions in regionProperties"
"Operate on all regions in regionProperties"
);
argList::addBoolOption
(
@ -262,32 +262,32 @@ int main(int argc, char *argv[])
argList::addBoolOption
(
"copyZero",
"Copy a 0 directory to processor* rather than decompose the fields"
"Copy 0/ directory to processor*/ rather than decompose the fields"
);
argList::addBoolOption
(
"copyUniform",
"copy any uniform/ directories too"
"Copy any uniform/ directories too"
);
argList::addBoolOption
(
"fields",
"use existing geometry decomposition and convert fields only"
"Use existing geometry decomposition and convert fields only"
);
argList::addBoolOption
(
"noSets",
"skip decomposing cellSets, faceSets, pointSets"
"Skip decomposing cellSets, faceSets, pointSets"
);
argList::addBoolOption
(
"force",
"remove existing processor*/ subdirs before decomposing the geometry"
"Remove existing processor*/ subdirs before decomposing the geometry"
);
argList::addBoolOption
(
"ifRequired",
"only decompose geometry if the number of domains has changed"
"Only decompose geometry if the number of domains has changed"
);
// Include explicit constant options, have zero from time range

View File

@ -90,42 +90,42 @@ int main(int argc, char *argv[])
argList::addBoolOption
(
"allRegions",
"operate on all regions in regionProperties"
"Operate on all regions in regionProperties"
);
argList::addOption
(
"fields",
"list",
"specify a list of fields to be reconstructed. Eg, '(U T p)' - "
"Specify a list of fields to be reconstructed. Eg, '(U T p)' - "
"regular expressions not currently supported"
);
argList::addBoolOption
(
"noFields",
"skip reconstructing fields"
"Skip reconstructing fields"
);
argList::addOption
(
"lagrangianFields",
"list",
"specify a list of lagrangian fields to be reconstructed. Eg, '(U d)' -"
"Specify a list of lagrangian fields to be reconstructed. Eg, '(U d)' -"
"regular expressions not currently supported, "
"positions always included."
);
argList::addBoolOption
(
"noLagrangian",
"skip reconstructing lagrangian positions and fields"
"Skip reconstructing lagrangian positions and fields"
);
argList::addBoolOption
(
"noSets",
"skip reconstructing cellSets, faceSets, pointSets"
"Skip reconstructing cellSets, faceSets, pointSets"
);
argList::addBoolOption
(
"newTimes",
"only reconstruct new times (i.e. that do not exist already)"
"Only reconstruct new times (i.e. that do not exist already)"
);
#include "setRootCase.H"

View File

@ -447,7 +447,7 @@ int main(int argc, char *argv[])
{
argList::addNote
(
"reconstruct a mesh using geometric information only"
"Reconstruct a mesh using geometric information only"
);
// Enable -constant ... if someone really wants it
@ -458,18 +458,17 @@ int main(int argc, char *argv[])
(
"mergeTol",
"scalar",
"specify the merge distance relative to the bounding box size "
"(default 1e-7)"
"The merge distance relative to the bounding box size (default 1e-7)"
);
argList::addBoolOption
(
"fullMatch",
"do (slower) geometric matching on all boundary faces"
"Do (slower) geometric matching on all boundary faces"
);
argList::addBoolOption
(
"cellDist",
"write cell distribution as a labelList - for use with 'manual' "
"Write cell distribution as a labelList - for use with 'manual' "
"decomposition method or as a volScalarField for post-processing."
);

View File

@ -2255,25 +2255,24 @@ int main(int argc, char *argv[])
timeSelector::addOptions(true, true);
#include "addRegionOption.H"
#include "addOverwriteOption.H"
argList::addBoolOption("decompose", "decompose case");
argList::addBoolOption("reconstruct", "reconstruct case");
argList::addBoolOption("decompose", "Decompose case");
argList::addBoolOption("reconstruct", "Reconstruct case");
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)"
);
argList::addBoolOption
(
"cellDist",
"write cell distribution as a labelList - for use with 'manual' "
"Write cell distribution as a labelList - for use with 'manual' "
"decomposition method or as a volScalarField for post-processing."
);
argList::addBoolOption
(
"newTimes",
"only reconstruct new times (i.e. that do not exist already)"
"Only reconstruct new times (i.e. that do not exist already)"
);