Difference between revisions of "StitchMesh"

From OpenFOAMWiki
m
(Modify to be coherent with the new framework and update to OF21)
Line 1: Line 1:
An example of how this utility may be used: [http://openfoamwiki.net/index.php/Import_a_fluent_mesh_with_interfaces Import a fluent mesh with interfaces]
+
==Name==
 +
<tt>stitchMesh</tt> - "Stitches" a mesh.
 +
 
 +
{{VersionInfo}}{{Version2.1}}
 +
 
 +
==Synopsis==
 +
stitchMesh [OPTIONS] MASTERPATCH SLAVEPATCH
 +
 
 +
==Description==
 +
"Stitches" the mesh by coupling ''MASTERPATCH'' with ''SLAVEPATCH''.
 +
 
 +
'''-partial'''
 +
:Couple partially overlapping patches
 +
'''-perfect'''
 +
:Couple perfectly aligned patches
 +
'''-toleranceDict''' ''FILENAME''
 +
:Dictionary ''FILENAME'' with tolerances
 +
 
 +
'''-overwrite'''
 +
:Overwrite the existing mesh files
 +
 
 +
'''-region''' ''NAME''
 +
:Specify a mesh region by its ''NAME''
 +
 
 +
'''-case''' ''DIR''
 +
:Execute the command on the case directory ''DIR''. If not provided, use the current directory
 +
'''-noFunctionObjects'''
 +
:Skip the execution of the [[functionObjects]]
 +
'''-help'''
 +
:Display the help and exit
 +
 
 +
An example of how this utility is shown there: [http://openfoamwiki.net/index.php/Import_a_fluent_mesh_with_interfaces Import a fluent mesh with interfaces]
  
 
[[Category:Mesh manipulation utilities]]
 
[[Category:Mesh manipulation utilities]]

Revision as of 19:25, 3 September 2012

1 Name

stitchMesh - "Stitches" a mesh.

Valid versions: OF Version 21.png

2 Synopsis

stitchMesh [OPTIONS] MASTERPATCH SLAVEPATCH

3 Description

"Stitches" the mesh by coupling MASTERPATCH with SLAVEPATCH.

-partial

Couple partially overlapping patches

-perfect

Couple perfectly aligned patches

-toleranceDict FILENAME

Dictionary FILENAME with tolerances

-overwrite

Overwrite the existing mesh files

-region NAME

Specify a mesh region by its NAME

-case DIR

Execute the command on the case directory DIR. If not provided, use the current directory

-noFunctionObjects

Skip the execution of the functionObjects

-help

Display the help and exit

An example of how this utility is shown there: Import a fluent mesh with interfaces