mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
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:
@ -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
|
||||
(
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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"
|
||||
|
||||
@ -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"
|
||||
|
||||
Reference in New Issue
Block a user