12#ifndef ARCANE_CARTESIANMESH_NODEDIRECTIONMNG_H
13#define ARCANE_CARTESIANMESH_NODEDIRECTIONMNG_H
17#include "arcane/ArcaneTypes.h"
18#include "arcane/Item.h"
19#include "arcane/ItemEnumerator.h"
20#include "arcane/VariableTypedef.h"
21#include "arcane/IndexedItemConnectivityView.h"
23#include "arcane/cartesianmesh/CartesianMeshGlobal.h"
40class ARCANE_CARTESIANMESH_EXPORT DirNode
42 friend NodeDirectionMng;
43 friend class DirNodeLocalId;
47 typedef signed char IndexType;
48 static constexpr IndexType NULL_CELL = -1;
54 ARCCORE_HOST_DEVICE IndexType operator[](
Int32 i)
const
56 ARCANE_CHECK_AT(i, 8);
62 IndexType m_indexes[8];
80 NodeLocalId
previousId()
const {
return m_previous.itemLocalId(); }
84 NodeLocalId
nextId()
const {
return m_next.itemLocalId(); }
102 return (x == NULL_CELL) ? CellLocalId(NULL_ITEM_LOCAL_ID) : CellLocalId(m_current.cellId(x));
113 return (x == NULL_CELL) ?
Cell() :
Cell(m_current.cell(x));
157 DirNodeCellIndex m_cell_index;
169class ARCANE_CARTESIANMESH_EXPORT DirNodeLocalId
171 friend NodeDirectionMng;
175 typedef signed char IndexType;
176 static constexpr IndexType NULL_CELL = -1;
181 ARCCORE_HOST_DEVICE DirNodeLocalId(NodeLocalId current, NodeLocalId
next, NodeLocalId prev,
183 IndexedNodeCellConnectivityView view)
194 ARCCORE_HOST_DEVICE NodeLocalId
previous()
const {
return m_previous; }
196 ARCCORE_HOST_DEVICE NodeLocalId
previousId()
const {
return m_previous; }
198 ARCCORE_HOST_DEVICE NodeLocalId
next()
const {
return m_next; }
200 ARCCORE_HOST_DEVICE NodeLocalId
nextId()
const {
return m_next; }
218 return (x == NULL_CELL) ? CellLocalId(NULL_ITEM_LOCAL_ID) : m_view.cellId(m_current, x);
241 NodeLocalId m_current;
242 NodeLocalId m_previous;
245 IndexedNodeCellConnectivityView m_view;
257 friend CartesianMeshImpl;
258 friend CartesianMeshPatch;
260 using IndexType = DirNode::IndexType;
289 void setCellIndexes(IndexType idx[8])
291 for (
int i = 0; i < 8; ++i)
292 m_cell_index.m_indexes[i] = idx[i];
294 DirNodeCellIndex m_cell_index;
317 return _node(n.localId());
323 return _node(n.localId());
360 return _node(n.localId());
397 void _internalDestroy();
404 void _internalResizeInfos(
Int32 new_size);
411 IndexedNodeCellConnectivityView m_node_cell_view;
Infos sur les mailles d'une direction spécifique X,Y ou Z d'un maillage structuré.
Noeud avant et après un noeud suivant une direction.
__host__ __device__ CellLocalId nextLeftCellId() const
Noeud devant à gauche dans la direction.
__host__ __device__ CellLocalId topPreviousRightCellId() const
Noeud derrière à droite dans la direction.
__host__ __device__ NodeLocalId previousId() const
Maille avant.
__host__ __device__ CellLocalId topNextRightCellId() const
Noeud devant à droite dans la direction.
__host__ __device__ CellLocalId cellId(Int32 position) const
Indice local d'une maille en fonction de sa position par rapport à ce noeud.
__host__ __device__ CellLocalId topPreviousLeftCellId() const
Noeud derrière à gauche dans la direction.
__host__ __device__ Int32 cellIndex(Int32 position) const
Indice dans la liste des mailles de ce noeud d'une maille en fonction de sa position.
__host__ __device__ NodeLocalId nextId() const
Maille après.
__host__ __device__ NodeLocalId previous() const
Maille avant.
__host__ __device__ CellLocalId previousLeftCellId() const
Noeud derrière à gauche dans la direction.
__host__ __device__ CellLocalId topNextLeftCellId() const
Noeud devant à gauche dans la direction.
__host__ __device__ CellLocalId nextRightCellId() const
Noeud devant à droite dans la direction.
__host__ __device__ CellLocalId previousRightCellId() const
Noeud derrière à droite dans la direction.
__host__ __device__ NodeLocalId next() const
Maille après.
Noeud avant et après un noeud suivant une direction.
CellLocalId topNextRightCellId() const
Noeud devant à droite dans la direction.
NodeLocalId previousId() const
Maille avant.
CellLocalId previousLeftCellId() const
Noeud derrière à gauche dans la direction.
Cell cell(Int32 position) const
Maille en fonction de sa position par rapport à ce noeud.
CellLocalId previousRightCellId() const
Noeud derrière à droite dans la direction.
NodeLocalId nextId() const
Maille après.
CellLocalId topPreviousRightCellId() const
Noeud derrière à droite dans la direction.
Node next() const
Maille après.
Node previous() const
Maille avant.
CellLocalId topNextLeftCellId() const
Noeud devant à gauche dans la direction.
Cell previousLeftCell() const
Noeud derrière à gauche dans la direction.
Cell previousRightCell() const
Noeud derrière à droite dans la direction.
CellLocalId cellId(Int32 position) const
Indice local d'une maille en fonction de sa position par rapport à ce noeud.
CellLocalId nextLeftCellId() const
Noeud devant à gauche dans la direction.
CellLocalId nextRightCellId() const
Noeud devant à droite dans la direction.
Cell nextRightCell() const
Noeud devant à droite dans la direction.
Cell topNextLeftCell() const
Noeud devant à gauche dans la direction.
Cell topPreviousRightCell() const
Noeud derrière à droite dans la direction.
Cell topPreviousLeftCell() const
Noeud derrière à gauche dans la direction.
Int32 cellIndex(Int32 position) const
Indice dans la liste des mailles de ce noeud d'une maille en fonction de sa position.
Cell topNextRightCell() const
Noeud devant à droite dans la direction.
CellLocalId topPreviousLeftCellId() const
Noeud derrière à gauche dans la direction.
Cell nextLeftCell() const
Noeud devant à gauche dans la direction.
Interface d'un maillage cartésien.
constexpr Int32 localId() const
Identifiant local de l'entité dans le sous-domaine du processeur.
Infos sur les noeuds d'une direction spécifique X,Y ou Z d'un maillage structuré.
DirNode operator[](NodeLocalId n) const
Noeud direction correspondant au noeud n.
DirNode dirNode(NodeLocalId n) const
Noeud direction correspondant au noeud n.
DirNode operator[](NodeEnumerator inode) const
Noeud direction correspondant à l'itérateur du noeud inode.
NodeDirectionMng()
Créé une instance vide.
DirNode operator[](Node n)
Noeud direction correspondant au noeud n.
DirNode node(NodeLocalId n) const
Noeud direction correspondant au noeud n.
DirNode _node(Int32 local_id) const
Noeud direction correspondant au noeud de numéro local local_id.
eMeshDirection direction() const
Valeur de la direction.
DirNode node(Node n) const
Noeud direction correspondant au noeud n.
__host__ __device__ DirNodeLocalId dirNodeId(NodeLocalId n) const
Noeud direction correspondant au noeud n.
__host__ __device__ DirNodeLocalId _dirNodeId(NodeLocalId local_id) const
Noeud direction correspondant au noeud de numéro local local_id.
Vue sur les informations des noeuds.
Vue d'un tableau d'éléments de type T.
ItemEnumeratorT< Node > NodeEnumerator
Enumérateurs sur des noeuds.
ItemGroupT< Node > NodeGroup
Groupe de noeuds.
MeshVariableScalarRefT< Cell, Real3 > VariableCellReal3
Grandeur au centre des mailles de type coordonnées.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Int32 Integer
Type représentant un entier.
eMeshDirection
Type de la direction pour un maillage structuré
std::int32_t Int32
Type entier signé sur 32 bits.
NodeLocalId m_previous_lid
entité avant l'entité courante dans la direction
ItemDirectionInfo()=default
Constructeur par défaut.
NodeLocalId m_next_lid
entité après l'entité courante dans la direction