mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
adjust usage for a few applications to account for new style
This commit is contained in:
@ -101,13 +101,13 @@ int main(int argc, char *argv[])
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noPatches",
|
||||
"Suppress writing any patches"
|
||||
"suppress writing any patches"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"patches",
|
||||
"patchList",
|
||||
"Specify particular patches to write. "
|
||||
"wordList",
|
||||
"specify particular patches to write - eg '(inlet outlet)'. "
|
||||
"An empty list suppresses writing the internalMesh."
|
||||
);
|
||||
|
||||
|
||||
@ -94,7 +94,7 @@ int main(int argc, char *argv[])
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noMesh",
|
||||
"Suppress writing the geometry. "
|
||||
"suppress writing the geometry. "
|
||||
"Can be useful for converting partial results for a static geometry"
|
||||
);
|
||||
|
||||
|
||||
@ -241,20 +241,46 @@ int main(int argc, char *argv[])
|
||||
|
||||
# include "addRegionOption.H"
|
||||
|
||||
argList::addOption("fields", "fields");
|
||||
argList::addOption("cellSet", "cellSet name");
|
||||
argList::addOption("faceSet", "faceSet name");
|
||||
argList::addOption("pointSet", "pointSet name");
|
||||
argList::addBoolOption("ascii");
|
||||
argList::addOption
|
||||
(
|
||||
"fields", "wordList",
|
||||
"only convert the specified fields - eg '(p T U)'"
|
||||
);
|
||||
argList::addOption
|
||||
(
|
||||
"cellSet",
|
||||
"name",
|
||||
"convert a mesh subset corresponding to the specified cellSet"
|
||||
);
|
||||
argList::addOption("faceSet", "name");
|
||||
argList::addOption("pointSet", "name");
|
||||
argList::addBoolOption
|
||||
(
|
||||
"ascii",
|
||||
"write in ASCII format instead of binary"
|
||||
);
|
||||
argList::addBoolOption("surfaceFields");
|
||||
argList::addBoolOption("nearCellValue");
|
||||
argList::addBoolOption("noInternal");
|
||||
argList::addBoolOption("noPointValues");
|
||||
argList::addBoolOption("allPatches");
|
||||
argList::addOption("excludePatches","patches to exclude");
|
||||
argList::addOption
|
||||
(
|
||||
"excludePatches",
|
||||
"wordReList",
|
||||
"a list of patches to exclude - eg '( inlet \".*Wall\" )' "
|
||||
);
|
||||
argList::addBoolOption("noFaceZones");
|
||||
argList::addBoolOption("noLinks");
|
||||
argList::addBoolOption("useTimeName");
|
||||
argList::addBoolOption
|
||||
(
|
||||
"noLinks",
|
||||
"don't link processor VTK files - parallel only"
|
||||
);
|
||||
argList::addBoolOption
|
||||
(
|
||||
"useTimeName",
|
||||
"use the time name instead of the time index when naming the files"
|
||||
);
|
||||
|
||||
# include "setRootCase.H"
|
||||
# include "createTime.H"
|
||||
|
||||
Reference in New Issue
Block a user