Salome HOME
22599: EDF 8159 SMESH: Bad groups created by extrusion
[modules/smesh.git] / doc / salome / gui / SMESH / input / about_meshes.doc
1 /*!
2
3 \page about_meshes_page About meshes
4
5 \n \b MESH represents a discrete approximation of a subset of the
6 three-dimensional space by \ref mesh_entities "elementary geometrical elements".
7
8 Mesh module provides several ways to create the mesh:
9 <ul>
10   <li>The main way is to \subpage constructing_meshes_page "construct the mesh" 
11     on the basis of the geometrical shape produced in the Geometry
12     module. This way implies selection of 
13     - a geometrical object (<em> main shape</em>) and
14     - <em>meshing parameters</em> (\ref
15       basic_meshing_algos_page "meshing algorithms" and
16     characteristics (e.g. element size) of a
17     required mesh encapsulated in \ref about_hypo_page "hypothesis"
18     objects).
19
20     Construction of \subpage constructing_submeshes_page "sub-meshes"
21     allows to discretize some sub-shapes of the main shape, for example a face,
22     using the meshing parameters that differ from those for other sub-shapes.<br>
23     Meshing parameters of meshes and sub-meshes can be 
24     \subpage editing_meshes_page "edited". (Upon edition only mesh entities
25     generated using changed meshing parameters are removed and will be
26     re-computed).<br>
27     \note Algorithms and hypotheses used at mesh level are referred to as
28     \a global ones and those used at sub-mesh level are referred to as \a
29     local ones.
30   </li>
31   <li>Bottom-up way, using \ref modifying_meshes_page "mesh modification"
32     operations, especially \ref extrusion_page "extrusion" and \ref
33     revolution_page "revolution". To create an empty mesh not based on a
34     geometry, use the same dialog as to \ref constructing_meshes_page
35     "construct the mesh on geometry" but do not specify a geometry
36     or a meshing algorithm.
37   </li>
38   <li>The mesh can be \subpage importing_exporting_meshes_page "imported" from
39     (and exported to) the file in MED, UNV, STL, CGNS, DAT, GMF and
40     SAUVE formats.
41   </li>
42   <li>The 3D mesh can be generated from the 2D mesh, \ref
43     importing_exporting_meshes_page "imported" or manually created. To
44     setup the meshing parameters of a mesh not based on a geometry, just
45     invoke \ref editing_meshes_page "Edit mesh / sub-mesh" command on
46     your 2D mesh.
47   </li>
48   <li>Several meshes can be \subpage building_compounds_page "combined"
49     into a new mesh.
50   </li>
51   <li>The whole mesh or its part (sub-mesh or group) can be 
52     \subpage copy_mesh_page "copied" into a new mesh.
53   </li>
54   <li>A new mesh can be created from a transformed, e.g. \ref
55     translation_page "translated", part of the mesh.</li>
56 </ul>
57
58 Meshes can be edited using the MESH functions destined for 
59 \ref modifying_meshes_page "modification" of meshes.
60
61 Attractive meshing capabilities include:
62 - 3D and 2D \ref viscous_layers_anchor "Viscous Layers" (boundary
63   layers of highly stretched elements beneficial for high quality
64   viscous computations);
65 - automatic conformal transition between tetrahedral and hexahedral
66   sub-meshes.
67
68 The \b structure of a SALOME mesh is described by nodes and elements based on
69 these nodes. The geometry of an element is defined by the sequence of
70 nodes constituting it and
71 the <a href="http://www.code-aster.org/outils/med/html/connectivites.html">
72   connectivity convention </a> (adopted from MED library). Definition of
73 the element basing on the elements of a lower dimension is NOT supported.
74
75 \anchor mesh_entities
76 The mesh can include the following entities:
77 <ul>
78 <li>\b Node &mdash; a mesh entity defining a position in 3D
79   space with coordinates (x, y, z).</li>
80 <li>\b Edge (or segment) &mdash; 1D mesh element linking two nodes.</li>
81 <li>\b Face &mdash; 2D mesh element representing a part of
82   surface bound by links between face nodes. A face can be a
83   triangle, quadrangle or polygon.</li>
84 <li>\b Volume &mdash; 3D mesh element representing a part of 3D
85   space bound by volume facets. Nodes of a volume describing each
86   facet are defined by
87   the <a href="http://www.code-aster.org/outils/med/html/connectivites.html">
88   MED connectivity convention.</a> A volume can be a tetrahedron, hexahedron,
89   pentahedron, pyramid, hexagonal prism or polyhedron.</li>
90 <li>\b 0D element &mdash; mesh element defined by one node.</li>
91 <li>\b Ball element &mdash; discrete mesh element defined by a
92   node and a diameter.</li>
93 </ul>
94
95 Every mesh entity has an attribute associating it to a sub-shape it is
96 generated on (if any). The node generated on the geometrical edge or
97 surface in addition stores its position in parametric space of the
98 associated geometrical entity.
99
100 Mesh entities are identified by integer IDs starting from 1.
101 Nodes and elements are countered separately, i.e. there can be a node
102 and element with the same ID.
103
104 SALOME supports elements of second order, without a central node
105 (quadratic triangle, quadrangle, polygon, tetrahedron, hexahedron,
106 pentahedron and pyramid) and with central nodes (bi-quadratic triangle
107 and quadrangle and tri-quadratic hexahedron).<br>
108 Quadratic mesh can be obtained in two ways:
109 - Using a global \ref quadratic_mesh_anchor "Quadratic Mesh"
110 hypothesis. (Elements with the central node are not generated in this way).
111 - Using \ref convert_to_from_quadratic_mesh_page operation.
112
113 */