Salome HOME
b92148cadcb7c31d6ddd868f33a86b4ee55cc736
[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 Discretization meshing algorithm - splits an edge into a
13 number of mesh segments following an 1D hypothesis.</li>
14 <li>Composite Side Discretization algorithm - allows to apply an 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>solid objects</b>):</li>
34
35 <ul>
36 <li>Hexahedron meshing algorithm (i,j,k) - 6-sided Solids are split into
37 hexahedral (cubic) elements.</li>
38 <li>\subpage cartesian_algo_page</li>
39 - internal parts of Solids 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 3D meshing algorithms, such as Hexahedron(i,j,k) and some
50 commercial ones, also can generate 3D meshes from 2D meshes, working without
51 geometrical objects. 
52
53 There is also a number of more specific algorithms:
54 <ul>
55 <li>\subpage prism_3d_algo_page "for meshing prismatic shapes"</li>
56 <li>\subpage projection_algos_page "for meshing by projection of another mesh"</li>
57 <li>\subpage import_algos_page "for meshing by importing elements from another mesh"</li>
58 <li>\subpage radial_prism_algo_page "for meshing geometrical objects with cavities"</li>
59 <li>\subpage radial_quadrangle_1D2D_algo_page "for meshing special 2d faces (circles and part of circles)"</li>
60 <li>\subpage use_existing_page "Use Edges to be Created Manually" and 
61 \ref use_existing_page "Use Faces to be Created Manually" algorithms can be
62 used to create a 1D or a 2D mesh in a python script.</li>
63 <li>\subpage segments_around_vertex_algo_page "for defining the local size of elements around a certain node"</li>
64 </ul>
65
66 \ref constructing_meshes_page "Constructing meshes" page describes in
67 detail how to apply meshing algorithms.
68
69 <br><b>See Also</b> a sample TUI Script of a 
70 \ref tui_defining_meshing_algos "Define Meshing Algorithm" operation.  
71
72 */