Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
IosGmsh.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 CEA (www.cea.fr) IFPEN (www.ifpenergiesnouvelles.com)
4// See the top-level COPYRIGHT file for details.
5// SPDX-License-Identifier: Apache-2.0
6//-----------------------------------------------------------------------------
7#ifndef ARCANE_STD_INTERNAL_IOSGMSH_H
8#define ARCANE_STD_INTERNAL_IOSGMSH_H
9/*---------------------------------------------------------------------------*/
10/*---------------------------------------------------------------------------*/
11
12#include "arcane/core/IMeshReader.h"
13
14#define MSH_LIN_2 1 //1 2-node line.
15#define MSH_TRI_3 2 //2 3-node triangle.
16#define MSH_QUA_4 3 //3 4-node quadrangle.
17#define MSH_TET_4 4 //4 4-node tetrahedron.
18#define MSH_HEX_8 5 //5 8-node hexahedron.
19#define MSH_PRI_6 6 //6 6-node prism.
20#define MSH_PYR_5 7 //7 5-node pyramid.
21#define MSH_LIN_3 8 //8 3-node second order line (2 nodes associated with the vertices and 1 with the edge).
22#define MSH_TRI_6 9 //9 6-node second order triangle (3 nodes associated with the vertices and 3 with the edges).
23#define MSH_QUA_9 10 //10 9-node second order quadrangle (4 nodes associated with the vertices, 4 with the edges and 1 with the face).
24#define MSH_TET_10 11 //11 10-node second order tetrahedron (4 nodes associated with the vertices and 6 with the edges).
25#define MSH_HEX_27 12 //12 27-node second order hexahedron (8 nodes associated with the vertices, 12 with the edges, 6 with the faces and 1 with the volume).
26#define MSH_PRI_18 13 //13 18-node second order prism (6 nodes associated with the vertices, 9 with the edges and 3 with the quadrangular faces).
27#define MSH_PYR_14 14 //14 14-node second order pyramid (5 nodes associated with the vertices, 8 with the edges and 1 with the quadrangular face).
28#define MSH_PNT 15 //15 1-node point.
29#define MSH_QUA_8 16 //16 8-node second order quadrangle (4 nodes associated with the vertices and 4 with the edges).
30#define MSH_HEX_20 17 //17 20-node second order hexahedron (8 nodes associated with the vertices and 12 with the edges).
31#define MSH_PRI_15 18 //18 15-node second order prism (6 nodes associated with the vertices and 9 with the edges).
32#define MSH_PYR_13 19 //19 13-node second order pyramid (5 nodes associated with the vertices and 8 with the edges).
33#define MSH_TRI_9 20
34#define MSH_TRI_10 21
35#define MSH_TRI_12 22
36#define MSH_TRI_15 23
37#define MSH_TRI_15I 24
38#define MSH_TRI_21 25
39#define MSH_LIN_4 26
40#define MSH_LIN_5 27
41#define MSH_LIN_6 28
42
43/*---------------------------------------------------------------------------*/
44/*---------------------------------------------------------------------------*/
45
46namespace Arcane
47{
48
49/*---------------------------------------------------------------------------*/
50/*---------------------------------------------------------------------------*/
51
53{
54 public:
55
56 virtual ~IMshMeshReader() = default;
57
58 public:
59
61 readMeshFromMshFile(IMesh* mesh, const String& file_name, bool use_internal_partition) = 0;
62};
63
64/*---------------------------------------------------------------------------*/
65/*---------------------------------------------------------------------------*/
66
67} // namespace Arcane
68
69/*---------------------------------------------------------------------------*/
70/*---------------------------------------------------------------------------*/
71
72#endif
73
74/*---------------------------------------------------------------------------*/
75/*---------------------------------------------------------------------------*/
eReturnType
Types des codes de retour d'une lecture ou écriture.
Definition IMeshReader.h:42
Chaîne de caractères unicode.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-