Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MshMeshGenerationInfo.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/*---------------------------------------------------------------------------*/
8/* MshMeshGenerationInfo.h (C) 2000-2025 */
9/* */
10/* Informations d'un maillage issu du format 'msh'. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_INTERNAL_MSHMESHGENERATIONINFO_H
13#define ARCANE_CORE_INTERNAL_MSHMESHGENERATIONINFO_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/String.h"
18#include "arcane/utils/FixedArray.h"
19#include "arcane/utils/UniqueArray.h"
20
22
23/*---------------------------------------------------------------------------*/
24/*---------------------------------------------------------------------------*/
25
26namespace Arcane::impl
27{
28
29/*---------------------------------------------------------------------------*/
30/*---------------------------------------------------------------------------*/
35class ARCANE_CORE_EXPORT MshMeshGenerationInfo
36{
37 public:
38
42 class MshPhysicalName
43 {
44 public:
45
46 MshPhysicalName(Int32 dimension, Int64 tag, const String& name)
47 : m_dimension(dimension)
48 , m_tag(tag)
49 , m_name(name)
50 {}
52 MshPhysicalName() = default;
53
54 public:
55
57 bool isNull() const { return m_dimension == (-1); }
58 Int32 dimension() const { return m_dimension; }
59 Int64 tag() const { return m_tag; }
60 const String& name() const { return m_name; }
61
62 private:
63
64 Int32 m_dimension = -1;
65 Int64 m_tag = -1;
66 String m_name;
67 };
68
76 {
77 public:
78
79 void add(Int32 dimension, Int64 tag, const String& name)
80 {
81 m_physical_names[dimension].add(MshPhysicalName{ dimension, tag, name });
82 }
89 MshPhysicalName find(Int32 dimension, Int64 tag) const
90 {
91 for (auto& x : m_physical_names[dimension])
92 if (x.tag() == tag)
93 return x;
94 return {};
95 }
96
97 private:
98
101 };
102
104 class MshEntitiesNodes
105 {
106 public:
107
108 MshEntitiesNodes(Int64 tag, Int64 physical_tag)
109 : m_tag(tag)
110 , m_physical_tag(physical_tag)
111 {}
112
113 public:
114
115 Int64 tag() const { return m_tag; }
116 Int64 physicalTag() const { return m_physical_tag; }
117
118 private:
119
120 Int64 m_tag = -1;
121 Int64 m_physical_tag = -1;
122 };
123
125 class MshEntitiesWithNodes
126 {
127 public:
128
129 MshEntitiesWithNodes(Int32 dim, Int64 tag, Int64 physical_tag)
130 : m_dimension(dim)
131 , m_tag(tag)
132 , m_physical_tag(physical_tag)
133 {}
134
135 public:
136
137 Int32 dimension() const { return m_dimension; }
138 Int64 tag() const { return m_tag; }
139 Int64 physicalTag() const { return m_physical_tag; }
140
141 private:
142
143 Int32 m_dimension = -1;
144 Int64 m_tag = -1;
145 Int64 m_physical_tag = -1;
146 };
147
149 {
150 public:
151
152 Int32 m_entity_dim = -1;
153 Int32 m_entity_tag = -1;
154 Int32 m_entity_tag_master = -1;
157 // Nombre de couples (esclave, maîtres)
158 Int32 m_nb_corresponding_node = 0;
161 };
162
165 {
166 public:
167
168 UniqueArray<MshPeriodicOneInfo> m_periodic_list;
169 };
170
171 public:
172
173 explicit MshMeshGenerationInfo(IMesh* mesh);
174
175 public:
176
177 static MshMeshGenerationInfo* getReference(IMesh* mesh, bool create);
178
179 public:
180
181 void findEntities(Int32 dimension, Int64 tag, Array<MshEntitiesWithNodes>& entities)
182 {
183 entities.clear();
184 for (auto& x : entities_with_nodes_list[dimension - 1])
185 if (x.tag() == tag)
186 entities.add(x);
187 }
188
189 MshEntitiesNodes* findNodeEntities(Int64 tag)
190 {
191 for (auto& x : entities_nodes_list)
192 if (x.tag() == tag)
193 return &x;
194 return nullptr;
195 }
196
197 public:
198
199 MshPhysicalNameList physical_name_list;
200 UniqueArray<MshEntitiesNodes> entities_nodes_list;
201 FixedArray<UniqueArray<MshEntitiesWithNodes>, 3> entities_with_nodes_list;
202 MshPeriodicInfo m_periodic_info;
203
204 private:
205
206 IMesh* m_mesh = nullptr;
207};
208
209/*---------------------------------------------------------------------------*/
210/*---------------------------------------------------------------------------*/
211
212} // End namespace Arcane
213
214/*---------------------------------------------------------------------------*/
215/*---------------------------------------------------------------------------*/
216
217#endif
Déclarations des types généraux de Arcane.
Tableau d'items de types quelconques.
void clear()
Supprime les éléments du tableau.
void add(ConstReferenceType val)
Ajoute l'élément val à la fin du tableau.
Tableau 1D de taille fixe.
Definition FixedArray.h:45
Chaîne de caractères unicode.
Vecteur 1D de données avec sémantique par valeur (style STL).
UniqueArray< double > m_affine_values
Liste des valeurs affines.
UniqueArray< Int64 > m_corresponding_nodes
Liste de couples (uniqueId noeud esclave, unique() noeud maître)
FixedArray< UniqueArray< MshPhysicalName >, 4 > m_physical_names
Liste par dimension des éléments du bloc $PhysicalNames.
MshPhysicalName find(Int32 dimension, Int64 tag) const
Récupère le nom physique associé au tag tag.
MshPhysicalName()=default
Construit un nom physique nul.
bool isNull() const
Indique si le nom physique n'est pas défini.
std::int64_t Int64
Type entier signé sur 64 bits.
std::int32_t Int32
Type entier signé sur 32 bits.