Arcane  v3.16.9.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
MeshVariableArrayRefTpl.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2025 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/* MeshVariableArrayTpl.cc (C) 2000-2025 */
9/* */
10/* Instanciation des classes templates des variables tableaux du maillage. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/core/MeshVariableArrayRef.inst.h"
15#include "arcane/core/MeshPartialVariableArrayRef.inst.h"
16#include "arcane/core/VariableFactoryRegisterer.h"
17
18/*---------------------------------------------------------------------------*/
19/*---------------------------------------------------------------------------*/
20
21namespace Arcane
22{
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
26
27#define ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(datatype) \
28template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<datatype>;\
29template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<datatype>;\
30template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Node,datatype>; \
31template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Edge,datatype>; \
32template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Face,datatype>; \
33template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Cell,datatype>; \
34template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Particle,datatype>; \
35template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<DoF,datatype>; \
36template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Node,datatype>; \
37template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Edge,datatype>; \
38template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Face,datatype>; \
39template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Cell,datatype>; \
40template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Particle,datatype>; \
41template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<DoF,datatype>
42
43/*---------------------------------------------------------------------------*/
44
45ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Byte);
46ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int8);
47ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int16);
48ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int32);
49ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Int64);
50ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(BFloat16);
51ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Float16);
52ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Float32);
53ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real);
54ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real2);
55ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real2x2);
56ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real3);
57ARCANE_INSTANTIATE_MESHVARIABLE_ARRAY(Real3x3);
58
59/*---------------------------------------------------------------------------*/
60/*---------------------------------------------------------------------------*/
61
62}
63
64/*---------------------------------------------------------------------------*/
65/*---------------------------------------------------------------------------*/
Type flottant demi-précision.
Classe gérant un vecteur de réel de dimension 2.
Definition Real2.h:121
Classe gérant une matrice de réel de dimension 2x2.
Definition Real2x2.h:53
Classe gérant un vecteur de réel de dimension 3.
Definition Real3.h:132
Classe gérant une matrice de réel de dimension 3x3.
Definition Real3x3.h:66
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
std::int8_t Int8
Type entier signé sur 8 bits.
std::int64_t Int64
Type entier signé sur 64 bits.
std::int16_t Int16
Type entier signé sur 16 bits.
double Real
Type représentant un réel.
unsigned char Byte
Type d'un octet.
Definition BaseTypes.h:43
float Float32
Type flottant IEEE-753 simple précision.
std::int32_t Int32
Type entier signé sur 32 bits.