Salome HOME
Correction of bug EDF10723 for 0D mesh.
[modules/med.git] / doc / doxygen / doxfiles / medcoupling / MEDCouplingMeshes.dox
1
2 /*!
3   \page MEDCouplingMeshesPage Meshes in MEDCoupling
4
5 \section MEDCouplingMeshes Common concept shared by all type of Meshes in MEDCoupling
6
7 A mesh has the following properties :
8
9 - name
10 - **a dimension (called mesh dimension) and only one** (it implies that \b all cells constituting
11 mesh have the same dimension)
12 - a space dimension (relative to coordinates)
13 - a number of nodes
14 - a number of cells
15
16 In MEDCoupling library there is no presence of faces nor edges.
17
18 As a mesh has one dimension and only once, that is to say every cells in
19 mesh have the same dimension called MeshDimension.
20
21 For example a mesh with a meshDimension equal to 1, have \b cells of type
22 NORM_SEG2. Another example, a mesh with a meshDimension equal
23 to 2, have \b cells of type
24 NORM_TRI3 and NORM_POLYGON for example.
25
26 The class that incarnates the concept described above is :
27 \ref ParaMEDMEM::MEDCouplingMesh.
28
29 \section MEDCouplingMeshesAvailInstan Available instantiable mesh types in MEDCoupling
30
31 - \subpage MEDCouplingUMeshPage "Unstructured meshes"
32 - \subpage MEDCouplingCMeshPage "Cartesian meshes"
33 - \subpage MEDCouplingExtrudedPage "3D Extruded meshes"
34
35 */