Arcane  v3.16.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
CartesianMeshUniqueIdRenumberingV2.h
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2023 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/* CartesianMeshUniqueIdRenumberingV2.h (C) 2000-2023 */
9/* */
10/* Renumérotation des uniqueId() pour les maillages cartésiens. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CARTESIANMESH_CARTESIANMESHUNIQUEIDRENUMBERINGV2_H
13#define ARCANE_CARTESIANMESH_CARTESIANMESHUNIQUEIDRENUMBERINGV2_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
17#include "arcane/utils/TraceAccessor.h"
18
21
22#include "arcane/cartesianmesh/CartesianMeshGlobal.h"
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
26
27namespace Arcane
28{
30
31/*---------------------------------------------------------------------------*/
32/*---------------------------------------------------------------------------*/
40class CartesianMeshUniqueIdRenumberingV2
41: public TraceAccessor
42{
43 public:
44 CartesianMeshUniqueIdRenumberingV2(ICartesianMesh* cmesh,ICartesianMeshGenerationInfo* gen_info);
45 ~CartesianMeshUniqueIdRenumberingV2() = default;
46 public:
47 void renumber();
48 private:
49 ICartesianMesh* m_cartesian_mesh = nullptr;
50 ICartesianMeshGenerationInfo* m_generation_info = nullptr;
51 bool m_is_verbose = false;
52 private:
53 void _applyChildrenCell2D(Cell cell,VariableNodeInt64& nodes_new_uid,VariableFaceInt64& faces_new_uid,
54 VariableCellInt64& cells_new_uid,
55 Int64 coord_i,Int64 coord_j,
56 Int64 current_level_nb_cell_x, Int64 current_level_nb_cell_y,
57 Int32 current_level, Int64 cell_adder, Int64 node_adder, Int64 face_adder);
58 void _applyChildrenCell3D(Cell cell,VariableNodeInt64& nodes_new_uid,VariableFaceInt64& faces_new_uid,
59 VariableCellInt64& cells_new_uid,
60 Int64 coord_i,Int64 coord_j,Int64 coord_k,
61 Int64 current_level_nb_cell_x, Int64 current_level_nb_cell_y, Int64 current_level_nb_cell_z,
62 Int32 current_level, Int64 cell_adder, Int64 node_adder, Int64 face_adder);
63 void _applyFamilyRenumbering(IItemFamily* family,VariableItemInt64& items_new_uid);
64};
65
66/*---------------------------------------------------------------------------*/
67/*---------------------------------------------------------------------------*/
68
69} // End namespace Arcane
70
71/*---------------------------------------------------------------------------*/
72/*---------------------------------------------------------------------------*/
73
74#endif
Déclarations de types sur les entités.
Maille d'un maillage.
Definition Item.h:1191
Informations sur la génération des maillages cartésiens.
Interface d'un maillage cartésien.
Interface d'une famille d'entités.
Definition IItemFamily.h:84
TraceAccessor(ITraceMng *m)
Construit un accesseur via le gestionnaire de trace m.
MeshVariableScalarRefT< Cell, Int64 > VariableCellInt64
Grandeur au centre des mailles de type entier 64 bits.
ItemVariableScalarRefT< Int64 > VariableItemInt64
Grandeur de type entier 64 bits.
MeshVariableScalarRefT< Node, Int64 > VariableNodeInt64
Grandeur au noeud de type entier 64 bits.
MeshVariableScalarRefT< Face, Int64 > VariableFaceInt64
Grandeur aux faces de type entier 64 bits.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
std::int64_t Int64
Type entier signé sur 64 bits.
std::int32_t Int32
Type entier signé sur 32 bits.