Salome HOME
Merge branch 'master' into V7_5_BR
[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 discretization of a geometrical CAD model into
6 a set of entities with a simple topology. 
7
8 It is possible to \subpage constructing_meshes_page "construct meshes" 
9 on the basis of geometrical shapes produced in the GEOM module.
10 Construction of \subpage constructing_submeshes_page "sub-meshes"
11 allows to mesh parts of the geometrical object, for example a face,
12 with different meshing parameters or using another meshing algorithm
13 than other parts.
14
15 3D mesh can be generated basing on a 2D closed mesh.
16
17 Several created meshes can be \subpage building_compounds_page "combined into another mesh".
18
19 The whole mesh or its part can be \subpage copy_mesh_page "copied" into another mesh.
20
21 Meshing parameters of meshes and sub-meshes can be 
22 \subpage editing_meshes_page "edited", then only the mesh part
23 depending on the changed parameters will be re-computed.
24
25 Meshes can be edited using the MESH functions destined for 
26 \ref modifying_meshes_page "modification" of generated meshes.
27
28 Meshes are stored in DAT, MED, UNV, STL, CGNS, GMF and SAUVE formats and can be
29 \subpage importing_exporting_meshes_page "imported from and exported to"
30  the file in these formats.
31
32 The \b topology of a mesh is described by the relationships between its
33 entities including:
34
35 <ul>
36 <li>\b Node &mdash; 0D object of a mesh presented by a point with coordinates (x, y, z).</li>
37 <li>\b 0D element &mdash; element of a mesh defined by one node.</li>
38 <li>\b Edge &mdash; 1D element of a mesh defined by two nodes.</li>
39 <li>\b Face &mdash; 2D element of a mesh defined by three or four edges (closed contour).</li>
40 <li>\b Volume &mdash; 3D element of a mesh defined by several faces.</li>
41 <li>\b Ball element &mdash; discrete element of a mesh defined by a node and a diameter.</li>
42 </ul>
43
44 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;These entities are
45 considered as topological entities and they don't
46 imply any geometric representation. Only \b Nodes reference  geometric
47 representations of points with definite coordinates. The node entity
48 contains  additional information about its position in the space
49 and its relations with the meshed CAD model. Its position could be
50 described in the following way:
51
52 <ul>
53 <li><b>3D position</b>. It characterizes the position of a node in a
54   solid geometry and is defined by three coordinates x,y and z and a
55   reference to the solid geometrical entity. </li>
56 <li><b>Surface position</b>. It characterizes the position of a node on a
57   geometric surface and is defined by the u,v position in the parametric
58   space of the corresponding surface.</li>
59 <li><b>Line position</b>. It characterizes the position of a node on a
60   geometric curve and is defined by the u parameter and the
61   corresponding curve.</li>
62 <li><b>Vertex position</b>. It characterizes the position of a node on a
63   geometric point of the meshed CAD model and is defined by the x,y,z
64   coordinates of the corresponding vertex.</li>
65 </ul>
66
67 */