Arcane  v3.14.10.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
UnstructuredMeshAllocateBuildInfo.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/* UnstructuredMeshAllocateBuildInfo.h (C) 2000-2023 */
9/* */
10/* Informations pour allouer les entités d'un maillage non structuré. */
11/*---------------------------------------------------------------------------*/
12#ifndef ARCANE_CORE_UNSTRUCTUREDMESHALLOCATEBUILDINFO_H
13#define ARCANE_CORE_UNSTRUCTUREDMESHALLOCATEBUILDINFO_H
14/*---------------------------------------------------------------------------*/
15/*---------------------------------------------------------------------------*/
16
18
19/*---------------------------------------------------------------------------*/
20/*---------------------------------------------------------------------------*/
21
22namespace Arcane
23{
24class UnstructuredMeshAllocateBuildInfoInternal;
25
26/*---------------------------------------------------------------------------*/
27/*---------------------------------------------------------------------------*/
37class ARCANE_CORE_EXPORT UnstructuredMeshAllocateBuildInfo
38{
39 public:
40
41 class Impl;
42 class Intenrnal;
43
44 public:
45
48
49 public:
50
55
56 public:
57
71 void preAllocate(Int32 nb_cell, Int64 nb_connectivity_node);
72
74 void setMeshDimension(Int32 v);
75
77 void addCell(ItemTypeId type_id, Int64 cell_uid, SmallSpan<const Int64> nodes_uid);
78
84 void allocateMesh();
85
86 public:
87
90
91 private:
92
93 Impl* m_p = nullptr;
94};
95
96/*---------------------------------------------------------------------------*/
97/*---------------------------------------------------------------------------*/
98
99} // End namespace Arcane
100
101/*---------------------------------------------------------------------------*/
102/*---------------------------------------------------------------------------*/
103
104#endif
Déclarations de types sur les entités.
Type d'une entité (Item).
Definition ItemTypeId.h:32
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:120
Informations pour allouer les entités d'un maillage non structuré.
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-