Arcane  v3.15.0.0
Documentation développeur
Chargement...
Recherche...
Aucune correspondance
MeshVariableTpl.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2024 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/* MeshVariableTpl.cc (C) 2000-2024 */
9/* */
10/* Instanciation des classes templates des variables du maillage. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/core/MeshVariableScalarRefT.H"
15#include "arcane/core/MeshPartialVariableScalarRefT.H"
16#include "arcane/core/VariableFactoryRegisterer.h"
17
18/*---------------------------------------------------------------------------*/
19/*---------------------------------------------------------------------------*/
20
21namespace Arcane
22{
23
24/*---------------------------------------------------------------------------*/
25/*---------------------------------------------------------------------------*/
26
27#define ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(datatype) \
28template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<datatype>;\
29template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<datatype>;\
30template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Node,datatype>; \
31template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Edge,datatype>; \
32template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Face,datatype>; \
33template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Cell,datatype>; \
34template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Particle,datatype>; \
35template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<DoF,datatype>; \
36template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Node,datatype>; \
37template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Edge,datatype>; \
38template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Face,datatype>; \
39template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Cell,datatype>; \
40template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Particle,datatype>; \
41template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<DoF,datatype>
42
43/*---------------------------------------------------------------------------*/
44
45ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Byte);
46ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Int8);
47ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Int16);
48ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Int32);
49ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Int64);
50ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(BFloat16);
51ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Float16);
52ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Float32);
53ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real);
54ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real2);
55ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real2x2);
56ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real3);
57ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real3x3);
58
59/*---------------------------------------------------------------------------*/
60
61/*---------------------------------------------------------------------------*/
62/*---------------------------------------------------------------------------*/
63
64}
65
66/*---------------------------------------------------------------------------*/
67/*---------------------------------------------------------------------------*/
Lecteur des fichiers de maillage via la bibliothèque LIMA.
Definition Lima.cc:149
-*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
Arccore::Float16 Float16
Type 'Float16' (binary16)
Arccore::Int8 Int8
Type représentant un entier sur 8 bits.
Arccore::BFloat16 BFloat16
Type 'Brain Float16'.
float Float32
Type flottant IEEE-753 simple précision (binary32)
unsigned char Byte
Type d'un octet.
Definition UtilsTypes.h:148