Arcane  4.1.12.0
Developer documentation
Loading...
Searching...
No Matches
MeshVariableArrayRefTpl.cc
1// -*- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature -*-
2//-----------------------------------------------------------------------------
3// Copyright 2000-2026 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/* Instantiation of template classes for mesh array variables. */
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) \
28 template class ARCANE_TEMPLATE_EXPORT ItemVariableArrayRefT<datatype>; \
29 template class ARCANE_TEMPLATE_EXPORT ItemPartialVariableArrayRefT<datatype>; \
30 template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Node, datatype>; \
31 template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Edge, datatype>; \
32 template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Face, datatype>; \
33 template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Cell, datatype>; \
34 template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<Particle, datatype>; \
35 template class ARCANE_TEMPLATE_EXPORT MeshVariableArrayRefT<DoF, datatype>; \
36 template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Node, datatype>; \
37 template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Edge, datatype>; \
38 template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Face, datatype>; \
39 template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Cell, datatype>; \
40 template class ARCANE_TEMPLATE_EXPORT MeshPartialVariableArrayRefT<Particle, datatype>; \
41 template 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} // namespace Arcane
63
64/*---------------------------------------------------------------------------*/
65/*---------------------------------------------------------------------------*/
Half-precision floating-point type.
Class managing a 2-dimensional real vector.
Definition Real2.h:122
Class managing a 2x2 matrix of reals.
Definition Real2x2.h:55
Class managing a 3-dimensional real vector.
Definition Real3.h:132
Class managing a 3x3 real matrix.
Definition Real3x3.h:67
-- tab-width: 2; indent-tabs-mode: nil; coding: utf-8-with-signature --
std::int8_t Int8
Signed integer type of 8 bits.
std::int64_t Int64
Signed integer type of 64 bits.
std::int16_t Int16
Signed integer type of 16 bits.
double Real
Type representing a real number.
unsigned char Byte
Type of a byte.
Definition BaseTypes.h:43
float Float32
IEEE-753 single-precision floating-point type.
std::int32_t Int32
Signed integer type of 32 bits.