Arcane  v3.14.10.0
Documentation utilisateur
Chargement...
Recherche...
Aucune correspondance
MeshVariableTpl.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2022 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-2016 */
9/* */
10/* Instanciation des classes templates des variables du maillage. */
11/*---------------------------------------------------------------------------*/
12/*---------------------------------------------------------------------------*/
13
14#include "arcane/MeshVariableScalarRefT.H"
15#include "arcane/MeshPartialVariableScalarRefT.H"
16#include "arcane/VariableFactoryRegisterer.h"
17
18/*---------------------------------------------------------------------------*/
19/*---------------------------------------------------------------------------*/
20
21ARCANE_BEGIN_NAMESPACE
22
23/*---------------------------------------------------------------------------*/
24/*---------------------------------------------------------------------------*/
25
26template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Byte>;
27template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Int16>;
28template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Int32>;
29template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Int64>;
30template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Real>;
31template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Real2>;
32template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Real3>;
33template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Real2x2>;
34template class ARCANE_TEMPLATE_EXPORT ItemVariableScalarRefT<Real3x3>;
35
36template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Byte>;
37template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Int16>;
38template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Int32>;
39template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Int64>;
40template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Real>;
41template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Real2>;
42template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Real3>;
43template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Real2x2>;
44template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableScalarRefT<Real3x3>;
45
46#define ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(datatype) \
47template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Node,datatype>; \
48template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Edge,datatype>; \
49template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Face,datatype>; \
50template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Cell,datatype>; \
51template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<Particle,datatype>; \
52template class ARCANE_TEMPLATE_EXPORT MeshVariableScalarRefT<DoF,datatype>; \
53template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Node,datatype>; \
54template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Edge,datatype>; \
55template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Face,datatype>; \
56template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Cell,datatype>; \
57template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<Particle,datatype>; \
58template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableScalarRefT<DoF,datatype>
59
60/*---------------------------------------------------------------------------*/
61
62ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Byte);
63ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Int16);
64ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Int32);
65ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Int64);
66ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real);
67ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real2);
68ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real2x2);
69ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real3);
70ARCANE_INSTANTIATE_MESHVARIABLE_SCALAR(Real3x3);
71
72/*---------------------------------------------------------------------------*/
73
74/*---------------------------------------------------------------------------*/
75/*---------------------------------------------------------------------------*/
76
77ARCANE_END_NAMESPACE
78
79/*---------------------------------------------------------------------------*/
80/*---------------------------------------------------------------------------*/