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:
@ -107,59 +107,59 @@ int main(int argc, char *argv[])
|
||||
argList::addBoolOption
|
||||
(
|
||||
"ascii",
|
||||
"write in ASCII format instead of 'C Binary'"
|
||||
"Write in ASCII format instead of 'C Binary'"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"nodeValues",
|
||||
"write values in nodes"
|
||||
"Write values in nodes"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noLagrangian",
|
||||
"suppress writing lagrangian positions and fields"
|
||||
"Suppress writing lagrangian positions and fields"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noPatches",
|
||||
"suppress writing any patches"
|
||||
"Suppress writing any patches"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"patches",
|
||||
"wordRes",
|
||||
"specify particular patches to write - eg '(outlet \"inlet.*\")'. "
|
||||
"Specify particular patches to write - eg '(outlet \"inlet.*\")'. "
|
||||
"An empty list suppresses writing the internalMesh."
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"faceZones",
|
||||
"wordRes",
|
||||
"specify faceZones to write - eg '( slice \"mfp-.*\" )'."
|
||||
"Specify faceZones to write - eg '( slice \"mfp-.*\" )'."
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"fields",
|
||||
"wordRes",
|
||||
"specify fields to export (all by default) - eg '( \"U.*\" )'."
|
||||
"Specify fields to export (all by default) - eg '( \"U.*\" )'."
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"cellZone",
|
||||
"word",
|
||||
"specify cellZone to write"
|
||||
"Specify cellZone to write"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"name",
|
||||
"subdir",
|
||||
"sub-directory name for ensight output (default: 'EnSight')"
|
||||
"Sub-directory name for ensight output (default: 'EnSight')"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"width",
|
||||
"n",
|
||||
"width of ensight data subdir"
|
||||
"Width of ensight data subdir"
|
||||
);
|
||||
|
||||
// The volume field types that we handle
|
||||
|
||||
@ -100,37 +100,37 @@ int main(int argc, char *argv[])
|
||||
argList::addBoolOption
|
||||
(
|
||||
"ascii",
|
||||
"write in ASCII format instead of 'C Binary'"
|
||||
"Write in ASCII format instead of 'C Binary'"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"index",
|
||||
"start",
|
||||
"ignore the time index contained in the uniform/time file "
|
||||
"Ignore the time index contained in the uniform/time file "
|
||||
"and use simple indexing when creating the files"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noLagrangian",
|
||||
"suppress writing lagrangian positions and fields"
|
||||
"Suppress writing lagrangian positions and fields"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noMesh",
|
||||
"suppress writing the geometry. "
|
||||
"Suppress writing the geometry. "
|
||||
"Can be useful for converting partial results for a static geometry"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"name",
|
||||
"subdir",
|
||||
"sub-directory name for ensight output (default: 'Ensight')"
|
||||
"Sub-directory name for ensight output (default: 'Ensight')"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"width",
|
||||
"n",
|
||||
"width of Ensight data subdir"
|
||||
"Width of Ensight data subdir"
|
||||
);
|
||||
|
||||
// The volume field types that we handle
|
||||
|
||||
@ -333,108 +333,108 @@ int main(int argc, char *argv[])
|
||||
(
|
||||
"fields",
|
||||
"wordList",
|
||||
"only convert the specified fields - eg '(p T U)'"
|
||||
"Only convert the specified fields - eg '(p T U)'"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"cellSet",
|
||||
"name",
|
||||
"convert a mesh subset corresponding to the specified cellSet"
|
||||
"Convert a mesh subset corresponding to the specified cellSet"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"cellZone",
|
||||
"name",
|
||||
"convert a mesh subset corresponding to the specified cellZone"
|
||||
"Convert a mesh subset corresponding to the specified cellZone"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"faceSet",
|
||||
"name",
|
||||
"restrict conversion to the specified faceSet"
|
||||
"Restrict conversion to the specified faceSet"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"pointSet",
|
||||
"name",
|
||||
"restrict conversion to the specified pointSet"
|
||||
"Restrict conversion to the specified pointSet"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"ascii",
|
||||
"write in ASCII format instead of binary"
|
||||
"Write in ASCII format instead of binary"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"xml",
|
||||
"write VTK xml instead of legacy format"
|
||||
"Write VTK xml instead of legacy format"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"poly",
|
||||
"write polyhedral cells without tet/pyramid decomposition"
|
||||
"Write polyhedral cells without tet/pyramid decomposition"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"surfaceFields",
|
||||
"write surfaceScalarFields (e.g., phi)"
|
||||
"Write surfaceScalarFields (e.g., phi)"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"finiteAreaFields",
|
||||
"write finite area fields"
|
||||
"Write finite area fields"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"nearCellValue",
|
||||
"use cell value on patches instead of patch value itself"
|
||||
"Use cell value on patches instead of patch value itself"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noInternal",
|
||||
"do not generate file for mesh, only for patches"
|
||||
"Do not generate file for mesh, only for patches"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noLagrangian",
|
||||
"suppress writing lagrangian positions and fields"
|
||||
"Suppress writing lagrangian positions and fields"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noPointValues",
|
||||
"no pointFields"
|
||||
"No pointFields"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"allPatches",
|
||||
"combine all patches into a single file"
|
||||
"Combine all patches into a single file"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"excludePatches",
|
||||
"wordRes",
|
||||
"a list of patches to exclude - eg '( inlet \".*Wall\" )' "
|
||||
"A list of patches to exclude - eg '( inlet \".*Wall\" )' "
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noFaceZones",
|
||||
"no faceZones"
|
||||
"No faceZones"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noLinks",
|
||||
"don't link processor VTK files - parallel only"
|
||||
"Do not link processor VTK files - parallel only"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"useTimeName",
|
||||
"use time name instead of the time index when naming files"
|
||||
"Use time name instead of the time index when naming files"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"name",
|
||||
"subdir",
|
||||
"sub-directory name for VTK output (default: 'VTK')"
|
||||
"Sub-directory name for VTK output (default: 'VTK')"
|
||||
);
|
||||
|
||||
#include "setRootCase.H"
|
||||
|
||||
Reference in New Issue
Block a user