Salome HOME
Merge from V6_main 11/02/2013
[modules/smesh.git] / doc / salome / gui / SMESH / input / basic_meshing_algos.doc
1 /*!
2
3 \page basic_meshing_algos_page Basic meshing algorithms
4
5 \n The MESH module contains a set of meshing algorithms, which are
6 used for meshing entities (1D, 2D, 3D) composing geometrical objects.
7
8 <ul>
9 <li>For meshing of 1D entities (<b>edges</b>):</li>
10
11 <ul>
12 <li>Wire Discretisation meshing algorithm - splits a wire into a
13 number of mesh segments following any 1D hypothesis.</li>
14 <li>Composite Side Discretisation algorithm - allows to apply any 1D
15 hypothesis to a whole side of a geometrical face even if it is
16 composed of several edges provided that they form C1 curve, have the
17 same hypotheses assigned and form one side in all faces of the main
18 shape of a mesh.</li>
19 </ul>
20
21 <li>For meshing of 2D entities (<b>faces</b>):</li>
22
23 <ul>
24 <li>Triangle meshing algorithms (Mefisto) - Faces are split into triangular elements.</li>
25 <li>Quadrangle meshing algorithm (Mapping) - quadrilateral Faces are split into
26 quadrangular elements.</li>
27 </ul>
28
29 \image html image123.gif "Example of a triangular 2D mesh"
30
31 \image html image124.gif "Example of a quadrangular 2D mesh"
32
33 <li>For meshing of 3D entities (<b>volume objects</b>):</li>
34
35 <ul>
36 <li>Hexahedron meshing algorithm (i,j,k) - 6-sided Volumes are split into
37 hexahedral (cubic) elements.</li>
38 <li>\subpage cartesian_algo_page</li>
39 - internal parts of Volumes are split into hexahedral elements forming a
40 Cartesian grid; polyhedra and other types of elements are generated
41 where the geometrical boundary intersects Cartesian cells.</li>
42 </ul>
43
44 \image html image125.gif "Example of a tetrahedral 3D mesh"
45
46 \image html image126.gif "Example of a hexahedral 3D mesh"
47 </ul>
48
49 Some of 3D meshing algorithms also can generate 3D meshes from 2D meshes, working without
50 geometrical objects. Such algorithms is
51 <ul>
52 <li>Hexahedron meshing algorithm (i,j,k),</li>
53 <!-- <li>GHS3D meshing algorithm (commercial)</li> -->
54 </ul>
55
56 There is also a number of more specific algorithms:
57 <ul>
58 <li>\subpage projection_algos_page "for meshing by projection of another mesh"</li>
59 <li>\subpage import_algos_page "for meshing by importing elements from another mesh"</li>
60 <li>\subpage radial_prism_algo_page "for meshing geometrical objects with cavities"</li>
61 <li>\subpage segments_around_vertex_algo_page "for defining the local size of elements around a certain node"</li>
62 <li>\subpage prism_3d_algo_page "for meshing prismatic shapes"</li>
63 <li>\subpage radial_quadrangle_1D2D_algo_page "for meshing special 2d faces (circles and part of circles)"</li>
64 </ul>
65 \ref use_existing_anchor "Use existing edges" and 
66 \ref use_existing_anchor "Use existing faces" algorithms can be
67 used to create a 1D or a 2D mesh in a python script.
68
69 \ref constructing_meshes_page "Constructing meshes" page describes in
70 detail how to apply meshing algorithms.
71
72 <br><b>See Also</b> a sample TUI Script of a 
73 \ref tui_defining_meshing_algos "Define Meshing Algorithm" operation.  
74
75 */