mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: added missing command line option descriptions for mapFields and splitMeshRegions.
This commit is contained in:
@ -1479,17 +1479,18 @@ int main(int argc, char *argv[])
|
|||||||
{
|
{
|
||||||
argList::addNote
|
argList::addNote
|
||||||
(
|
(
|
||||||
"splits mesh into multiple regions"
|
"splits mesh into multiple regions (detected by walking across faces)"
|
||||||
);
|
);
|
||||||
#include "addOverwriteOption.H"
|
#include "addOverwriteOption.H"
|
||||||
argList::addBoolOption
|
argList::addBoolOption
|
||||||
(
|
(
|
||||||
"cellZones"
|
"cellZones",
|
||||||
|
"additionally split cellZones off into separate regions"
|
||||||
);
|
);
|
||||||
argList::addBoolOption
|
argList::addBoolOption
|
||||||
(
|
(
|
||||||
"cellZonesOnly",
|
"cellZonesOnly",
|
||||||
"use current cellZones to split mesh into regions"
|
"use cellZones only to split mesh into regions; do not use walking"
|
||||||
);
|
);
|
||||||
argList::addOption
|
argList::addOption
|
||||||
(
|
(
|
||||||
@ -1500,7 +1501,8 @@ int main(int argc, char *argv[])
|
|||||||
argList::addOption
|
argList::addOption
|
||||||
(
|
(
|
||||||
"blockedFaces",
|
"blockedFaces",
|
||||||
"faceSet"
|
"faceSet",
|
||||||
|
"specify additional region boundaries that walking does not cross"
|
||||||
);
|
);
|
||||||
argList::addBoolOption
|
argList::addBoolOption
|
||||||
(
|
(
|
||||||
@ -1509,12 +1511,14 @@ int main(int argc, char *argv[])
|
|||||||
);
|
);
|
||||||
argList::addBoolOption
|
argList::addBoolOption
|
||||||
(
|
(
|
||||||
"largestOnly"
|
"largestOnly",
|
||||||
|
"only write largest region"
|
||||||
);
|
);
|
||||||
argList::addOption
|
argList::addOption
|
||||||
(
|
(
|
||||||
"insidePoint",
|
"insidePoint",
|
||||||
"point"
|
"point",
|
||||||
|
"only write region containing point"
|
||||||
);
|
);
|
||||||
argList::addBoolOption
|
argList::addBoolOption
|
||||||
(
|
(
|
||||||
@ -1524,7 +1528,7 @@ int main(int argc, char *argv[])
|
|||||||
argList::addBoolOption
|
argList::addBoolOption
|
||||||
(
|
(
|
||||||
"sloppyCellZones",
|
"sloppyCellZones",
|
||||||
"try to match regions to existing cell zones"
|
"try to match heuristically regions to existing cell zones"
|
||||||
);
|
);
|
||||||
|
|
||||||
#include "setRootCase.H"
|
#include "setRootCase.H"
|
||||||
|
|||||||
@ -250,7 +250,11 @@ int main(int argc, char *argv[])
|
|||||||
"parallelTarget",
|
"parallelTarget",
|
||||||
"the target is decomposed"
|
"the target is decomposed"
|
||||||
);
|
);
|
||||||
argList::addBoolOption("consistent");
|
argList::addBoolOption
|
||||||
|
(
|
||||||
|
"consistent",
|
||||||
|
"source and target geometry and boundary conditions identical"
|
||||||
|
);
|
||||||
|
|
||||||
argList args(argc, argv);
|
argList args(argc, argv);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user