12#ifndef ARCANE_CORE_INTERNAL_CARTESIANMESHGENERATIONINFO_H
13#define ARCANE_CORE_INTERNAL_CARTESIANMESHGENERATIONINFO_H
17#include "arcane/utils/ArrayView.h"
18#include "arcane/utils/Real3.h"
20#include "arcane/ICartesianMeshGenerationInfo.h"
34class ARCANE_CORE_EXPORT CartesianMeshGenerationInfo
37 static constexpr Int32 NB_DIM = 3;
45 Int64 globalNbCell()
const override {
return m_global_nb_cell; }
51 Int64 firstOwnCellUniqueId()
const override {
return m_first_own_cell_unique_id; }
52 Real3 globalOrigin()
const override {
return m_global_origin; };
53 Real3 globalLength()
const override {
return m_global_length; };
62 void setFirstOwnCellUniqueId(
Int64 uid)
override;
63 void setGlobalOrigin(
Real3 pos)
override;
64 void setGlobalLength(
Real3 length)
override;
69 Int32 m_mesh_dimension = -1;
70 Int64 m_global_nb_cell = 0;
78 Int64 m_global_nb_cell_ptr[NB_DIM];
79 Int32 m_sub_domain_offset_ptr[NB_DIM];
80 Int32 m_nb_sub_domain_ptr[NB_DIM];
81 Int32 m_own_nb_cell_ptr[NB_DIM];
82 Int64 m_own_cell_offset_ptr[NB_DIM];
83 Real3 m_global_origin;
84 Real3 m_global_length;
86 Int64 m_first_own_cell_unique_id = -1;
Informations sur la génération des maillages cartésiens.
Classe gérant un vecteur de réel de dimension 3.
ArrayView< Int64 > Int64ArrayView
Equivalent C d'un tableau à une dimension d'entiers 64 bits.
std::int64_t Int64
Type entier signé sur 64 bits.
ConstArrayView< Int32 > Int32ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
ConstArrayView< Int64 > Int64ConstArrayView
Equivalent C d'un tableau à une dimension d'entiers 64 bits.
ArrayView< Int32 > Int32ArrayView
Equivalent C d'un tableau à une dimension d'entiers 32 bits.
std::int32_t Int32
Type entier signé sur 32 bits.