From 34f060cfbb2266b28e9d1c868aaab01178a0f771 Mon Sep 17 00:00:00 2001 From: Henry Weller <http://cfd.direct> Date: Wed, 9 Sep 2015 19:56:07 +0100 Subject: [PATCH] stitchMesh: Improved docs Provided by Bruno Santos Resolves report http://www.openfoam.org/mantisbt/view.php?id=1767 --- .../mesh/manipulation/stitchMesh/stitchMesh.C | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/applications/utilities/mesh/manipulation/stitchMesh/stitchMesh.C b/applications/utilities/mesh/manipulation/stitchMesh/stitchMesh.C index c8cba9f2b2c..8e64c28a381 100644 --- a/applications/utilities/mesh/manipulation/stitchMesh/stitchMesh.C +++ b/applications/utilities/mesh/manipulation/stitchMesh/stitchMesh.C @@ -198,8 +198,10 @@ int main(int argc, char *argv[]) { argList::addNote ( - "merge the faces on the specified patches (if geometrically possible)\n" - "so the faces become internal" + "Merge the faces on the specified patches (if geometrically possible)\n" + "so the faces become internal.\n" + "Integral matching is used when the options -partial and -perfect are " + "omitted.\n" ); argList::noParallel(); @@ -212,12 +214,12 @@ int main(int argc, char *argv[]) argList::addBoolOption ( "partial", - "couple partially overlapping patches" + "couple partially overlapping patches (optional)" ); argList::addBoolOption ( "perfect", - "couple perfectly aligned patches" + "couple perfectly aligned patches (optional)" ); argList::addOption ( -- GitLab