Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
core/materials/ComponentPartItemVectorView.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2024 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/* ComponentPartItemVectorView.h (C) 2000-2024 */
9/* */
10/* Vue sur un vecteur sur une partie des entités composants. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_MATERIALS_COMPONENTPARTITEMVECTORVIEW_H
13#define ARCANE_CORE_MATERIALS_COMPONENTPARTITEMVECTORVIEW_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/ArrayView.h"
18
19#include "arcane/core/materials/MaterialsCoreGlobal.h"
20#include "arcane/core/materials/ComponentItemInternal.h"
21
22/*---------------------------------------------------------------------------*/
23/*---------------------------------------------------------------------------*/
24
25namespace Arcane::Materials
26{
27
28/*---------------------------------------------------------------------------*/
29/*---------------------------------------------------------------------------*/
34class ARCANE_CORE_EXPORT ComponentPartItemVectorView
35{
36 friend class MeshComponentPartData;
37 friend class ComponentPartCellEnumerator;
38
39 protected:
40
50 Int32ConstArrayView value_indexes,
51 Int32ConstArrayView item_indexes,
52 const ConstituentItemLocalIdListView& constituent_list_view,
55 , m_component_part_index(component_part_index)
56 , m_value_indexes(value_indexes)
57 , m_item_indexes(item_indexes)
58 , m_constituent_list_view(constituent_list_view)
59 , m_part(part)
60 {
61 }
62
63 public:
64
67
68 public:
69
71 Integer nbItem() const { return m_value_indexes.size(); }
72
75
76 // Index de la partie de ce composant (équivalent à MatVarIndex::arrayIndex()).
77 Int32 componentPartIndex() const { return m_component_part_index; }
78
81
84
86 eMatPart part() const { return m_part; }
87
88 protected:
89
92
93 private:
94
97
100
103
106
109
111 eMatPart m_part = eMatPart::Pure;
112};
113
114/*---------------------------------------------------------------------------*/
115/*---------------------------------------------------------------------------*/
120class ARCANE_CORE_EXPORT ComponentPurePartItemVectorView
122{
123 friend class MatPurePartItemVectorView;
124 friend class EnvPurePartItemVectorView;
125 friend class MeshComponentPartData;
126
127 private:
128
131 Int32ConstArrayView value_indexes,
132 Int32ConstArrayView item_indexes,
133 const ConstituentItemLocalIdListView& constituent_list_view)
134 : ComponentPartItemVectorView(component, 0, value_indexes, item_indexes, constituent_list_view, eMatPart::Pure)
135 {
136 }
137
138 public:
139
142};
143
144/*---------------------------------------------------------------------------*/
145/*---------------------------------------------------------------------------*/
150class ARCANE_CORE_EXPORT ComponentImpurePartItemVectorView
152{
153 friend class MatImpurePartItemVectorView;
154 friend class EnvImpurePartItemVectorView;
155 friend class MeshComponentPartData;
156
157 private:
158
161 Int32 component_part_index,
162 Int32ConstArrayView value_indexes,
163 Int32ConstArrayView item_indexes,
164 const ConstituentItemLocalIdListView& constituent_list_view)
165 : ComponentPartItemVectorView(component, component_part_index, value_indexes,
166 item_indexes, constituent_list_view, eMatPart::Impure)
167 {
168 }
169
170 public:
171
174};
175
176/*---------------------------------------------------------------------------*/
177/*---------------------------------------------------------------------------*/
178
179/*---------------------------------------------------------------------------*/
180/*---------------------------------------------------------------------------*/
185class ARCANE_CORE_EXPORT MatPartItemVectorView
187{
188 public:
189
194
195 public:
196
198 IMeshMaterial* material() const { return m_material; }
199
200 private:
201
202 IMeshMaterial* m_material = nullptr;
203};
204
205/*---------------------------------------------------------------------------*/
206/*---------------------------------------------------------------------------*/
211class ARCANE_CORE_EXPORT MatPurePartItemVectorView
213{
214 public:
215
219
221
222 public:
223
224 operator ComponentPurePartItemVectorView() const
225 {
226 return { component(), valueIndexes(),
227 itemIndexes(), constituentItemListView() };
228 }
229};
230
231/*---------------------------------------------------------------------------*/
232/*---------------------------------------------------------------------------*/
237class ARCANE_CORE_EXPORT MatImpurePartItemVectorView
239{
240 public:
241
245
247
248 public:
249
250 operator ComponentImpurePartItemVectorView() const
251 {
252 return { component(), componentPartIndex(),
253 valueIndexes(),
254 itemIndexes(), constituentItemListView() };
255 }
256};
257
258/*---------------------------------------------------------------------------*/
259/*---------------------------------------------------------------------------*/
260
261/*---------------------------------------------------------------------------*/
262/*---------------------------------------------------------------------------*/
267class ARCANE_CORE_EXPORT EnvPartItemVectorView
269{
270 public:
271
276
277 public:
278
280 IMeshEnvironment* environment() const { return m_environment; }
281
282 private:
283
284 IMeshEnvironment* m_environment = nullptr;
285};
286
287/*---------------------------------------------------------------------------*/
288/*---------------------------------------------------------------------------*/
293class ARCANE_CORE_EXPORT EnvPurePartItemVectorView
295{
296 public:
297
301
303
304 public:
305
306 operator ComponentPurePartItemVectorView() const
307 {
308 return { component(), valueIndexes(),
309 itemIndexes(), constituentItemListView() };
310 }
311};
312
313/*---------------------------------------------------------------------------*/
314/*---------------------------------------------------------------------------*/
319class ARCANE_CORE_EXPORT EnvImpurePartItemVectorView
321{
322 public:
323
327
329
330 public:
331
332 operator ComponentImpurePartItemVectorView() const
333 {
334 return { component(), componentPartIndex(),
335 valueIndexes(),
336 itemIndexes(), constituentItemListView() };
337 }
338};
339
340/*---------------------------------------------------------------------------*/
341/*---------------------------------------------------------------------------*/
342
343} // End namespace Arcane::Materials
344
345/*---------------------------------------------------------------------------*/
346/*---------------------------------------------------------------------------*/
347
348#endif
ComponentImpurePartItemVectorView()=default
Construit une vue non initialisée.
ComponentImpurePartItemVectorView(IMeshComponent *component, Int32 component_part_index, Int32ConstArrayView value_indexes, Int32ConstArrayView item_indexes, const ConstituentItemLocalIdListView &constituent_list_view)
Construit une vue sur une partie des entité du composant component.
ComponentPartItemVectorView()=default
Construit une vue non initialisée.
Int32ConstArrayView itemIndexes() const
Liste des indices dans itemsInternal() des entités.
ConstituentItemLocalIdListView m_constituent_list_view
Liste des ComponentItemInternal* pour ce constituant.
Int32ConstArrayView m_value_indexes
Liste des valueIndex() de la partie.
const ConstituentItemLocalIdListView & constituentItemListView() const
Tableau parties internes des entités.
ComponentPartItemVectorView(IMeshComponent *component, Int32 component_part_index, Int32ConstArrayView value_indexes, Int32ConstArrayView item_indexes, const ConstituentItemLocalIdListView &constituent_list_view, eMatPart part)
Construit une vue sur une partie des entité du composant component.
Int32ConstArrayView m_item_indexes
Liste des indices dans m_items_internal de chaque maille matériau.
Int32 m_component_part_index
Indice du constituant pour l'accès aux valeurs partielles.
Int32ConstArrayView valueIndexes() const
Liste des valueIndex() de la partie.
ComponentPurePartItemVectorView()=default
Construit une vue non initialisée.
ComponentPurePartItemVectorView(IMeshComponent *component, Int32ConstArrayView value_indexes, Int32ConstArrayView item_indexes, const ConstituentItemLocalIdListView &constituent_list_view)
Construit une vue sur une partie des entité du composant component.
Vue sur une instance de ConstituentItemLocalIdList.
EnvImpurePartItemVectorView(IMeshEnvironment *env, const ComponentImpurePartItemVectorView &view)
Construit une vue pour le milieu env.
EnvPartItemVectorView(IMeshEnvironment *env, const ComponentPartItemVectorView &view)
Construit une vue pour le milieu env.
EnvPartItemVectorView()=default
Construit une vue non initialisée.
EnvPurePartItemVectorView(IMeshEnvironment *env, const ComponentPurePartItemVectorView &view)
Construit une vue pour le milieu env.
Interface d'un composant (matériau ou milieu) d'un maillage.
Interface d'un matériau d'un maillage.
MatImpurePartItemVectorView(IMeshMaterial *material, const ComponentImpurePartItemVectorView &view)
Construit une vue pour le matériau material.
MatPartItemVectorView(IMeshMaterial *material, const ComponentPartItemVectorView &view)
Construit une vue pour le matériau material.
MatPartItemVectorView()=default
Construit une vue non initialisée.
MatPurePartItemVectorView(IMeshMaterial *material, const ComponentPurePartItemVectorView &view)
Construit une vue pour le matériau material.
Active toujours les traces dans les parties Arcane concernant les matériaux.
eMatPart
Partie d'un composant.
Int32 Integer
Type représentant un entier.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
Definition UtilsTypes.h:569
std::int32_t Int32
Type entier signé sur 32 bits.