Loading [MathJax]/extensions/TeX/AMSsymbols.js
Reference documentation for deal.II version 9.0.0
Main Page
Tutorial
Code gallery
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
+
Variables
a
b
c
e
f
i
l
n
o
p
r
s
t
u
v
z
+
Typedefs
b
g
m
p
s
v
Enumerations
+
Enumerator
a
c
d
e
g
h
i
l
m
n
o
p
s
t
u
v
w
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
v
w
+
Enumerations
a
b
c
d
e
f
i
m
o
p
r
s
t
u
v
w
z
+
Enumerator
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Related Functions
:
a
b
c
d
f
i
l
m
o
p
r
s
t
u
v
Related Pages
+
Files
File List
+
File Members
+
All
d
e
f
i
o
s
t
u
+
Functions
d
e
f
i
o
s
t
u
Enumerations
dealii.org
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Modules
Pages
deal.II
fe
fe_values_extractors.h
1
// ---------------------------------------------------------------------
2
//
3
// Copyright (C) 1998 - 2018 by the deal.II authors
4
//
5
// This file is part of the deal.II library.
6
//
7
// The deal.II library is free software; you can use it, redistribute
8
// it, and/or modify it under the terms of the GNU Lesser General
9
// Public License as published by the Free Software Foundation; either
10
// version 2.1 of the License, or (at your option) any later version.
11
// The full text of the license can be found in the file LICENSE at
12
// the top level of the deal.II distribution.
13
//
14
// ---------------------------------------------------------------------
15
16
#ifndef dealii_fe_values_extractors_h
17
#define dealii_fe_values_extractors_h
18
19
20
#include <deal.II/base/config.h>
21
22
DEAL_II_NAMESPACE_OPEN
23
24
41
namespace
FEValuesExtractors
42
{
54
struct
Scalar
55
{
59
unsigned
int
component
;
60
68
Scalar
();
69
73
Scalar
(
const
unsigned
int
component
);
74
};
75
76
103
struct
Vector
104
{
108
unsigned
int
first_vector_component
;
109
117
Vector
();
118
123
Vector
(
const
unsigned
int
first_vector_component
);
124
};
125
126
145
template
<
int
rank>
146
struct
SymmetricTensor
147
{
151
unsigned
int
first_tensor_component
;
152
160
SymmetricTensor
();
161
166
SymmetricTensor
(
const
unsigned
int
first_tensor_component
);
167
};
168
169
188
template
<
int
rank>
189
struct
Tensor
190
{
194
unsigned
int
first_tensor_component
;
195
203
Tensor
();
204
209
Tensor
(
const
unsigned
int
first_tensor_component
);
210
};
211
}
212
213
214
/*------------------------ Inline functions: namespace FEValuesExtractors --------*/
215
216
namespace
FEValuesExtractors
217
{
218
inline
219
Scalar::Scalar
()
220
:
221
component (
numbers
::invalid_unsigned_int)
222
{}
223
224
225
226
inline
227
Scalar::Scalar
(
const
unsigned
int
component)
228
:
229
component (component)
230
{}
231
232
233
234
inline
235
Vector::Vector
()
236
:
237
first_vector_component (
numbers
::invalid_unsigned_int)
238
{}
239
240
241
inline
242
Vector::Vector
(
const
unsigned
int
first_vector_component)
243
:
244
first_vector_component (first_vector_component)
245
{}
246
247
248
template
<
int
rank>
249
inline
250
SymmetricTensor<rank>::SymmetricTensor
()
251
:
252
first_tensor_component(
numbers
::invalid_unsigned_int)
253
{}
254
255
256
template
<
int
rank>
257
inline
258
SymmetricTensor<rank>::SymmetricTensor
(
const
unsigned
int
first_tensor_component)
259
:
260
first_tensor_component (first_tensor_component)
261
{}
262
263
264
template
<
int
rank>
265
inline
266
Tensor<rank>::Tensor
()
267
:
268
first_tensor_component(
numbers
::invalid_unsigned_int)
269
{}
270
271
272
template
<
int
rank>
273
inline
274
Tensor<rank>::Tensor
(
const
unsigned
int
first_tensor_component)
275
:
276
first_tensor_component (first_tensor_component)
277
{}
278
}
279
280
281
282
283
DEAL_II_NAMESPACE_CLOSE
284
285
#endif
FEValuesExtractors::Tensor
Definition:
fe_values_extractors.h:189
FEValuesExtractors::Tensor::Tensor
Tensor()
Definition:
fe_values_extractors.h:266
FEValuesExtractors::SymmetricTensor::SymmetricTensor
SymmetricTensor()
Definition:
fe_values_extractors.h:250
FEValuesExtractors::SymmetricTensor
Definition:
fe_values_extractors.h:146
FEValuesExtractors::Vector::first_vector_component
unsigned int first_vector_component
Definition:
fe_values_extractors.h:108
FEValuesExtractors::Vector
Definition:
fe_values_extractors.h:103
FEValuesExtractors::Scalar
Definition:
fe_values_extractors.h:54
FEValuesExtractors::SymmetricTensor::first_tensor_component
unsigned int first_tensor_component
Definition:
fe_values_extractors.h:151
FEValuesExtractors::Scalar::Scalar
Scalar()
Definition:
fe_values_extractors.h:219
numbers
Definition:
numbers.h:97
FEValuesExtractors::Scalar::component
unsigned int component
Definition:
fe_values_extractors.h:59
FEValuesExtractors::Vector::Vector
Vector()
Definition:
fe_values_extractors.h:235
FEValuesExtractors::Tensor::first_tensor_component
unsigned int first_tensor_component
Definition:
fe_values_extractors.h:194
FEValuesExtractors
Definition:
fe_values_extractors.h:41
Generated by
1.8.14