Loading [MathJax]/extensions/MathMenu.js
OGS
Toggle main menu visibility
Main Page
Related Pages
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
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
y
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
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
z
Enumerations
b
c
d
e
f
g
i
l
m
n
o
p
s
t
u
v
Enumerator
a
b
c
d
e
f
g
h
l
m
n
p
r
s
t
v
y
Classes
Class List
Class Index
Class Hierarchy
Files
File List
File Members
All
a
b
c
d
e
f
g
i
k
m
n
o
p
r
s
t
v
w
x
Functions
a
c
d
e
f
g
i
m
o
p
r
s
t
v
w
Variables
Typedefs
Enumerations
Macros
b
c
g
m
n
o
p
r
s
t
▼
OGS
►
OpenGeoSys 6.5.4-276-g3d6bff6232 source code documentation
►
OGS CTests—Project Files
►
OGS Input File Parameters—Quality Assurance
►
OGS Input File Parameters
BulkMappingDocuPage
Todo List
OGS Input File Parameters—List of incomplete documentation pages
Bibliography
►
Namespaces
►
Classes
▼
Files
▼
File List
►
Applications
►
BaseLib
►
build
►
ChemistryLib
Documentation
►
GeoLib
►
InfoLib
►
MaterialLib
▼
MathLib
►
Curve
►
Integration
►
InterpolationAlgorithms
►
LinAlg
►
Nonlinear
►
ODE
►
EigenBlockMatrixView.h
FormattingUtils.cpp
►
FormattingUtils.h
►
GeometricBasics.cpp
►
GeometricBasics.h
►
KahanSum.h
►
KelvinVector-impl.h
►
KelvinVector.cpp
►
KelvinVector.h
►
MathTools.cpp
►
MathTools.h
►
Point3d.cpp
►
Point3d.h
►
Point3dWithID.h
►
VectorizedTensor.cpp
►
VectorizedTensor.h
►
WeightedPoint.cpp
►
WeightedPoint.h
►
MeshGeoToolsLib
►
MeshLib
►
MeshToolsLib
►
NumLib
►
ParameterLib
►
ProcessLib
►
File Members
VectorizedTensor.cpp
Go to the documentation of this file.
1
10
#include "
VectorizedTensor.h
"
11
12
namespace
MathLib::VectorizedTensor
13
{
14
15
bool
isTensorConvertibleTo1d
(Eigen::Matrix3d
const
& tensor)
16
{
17
return
(tensor(0, 1) == 0. && tensor(1, 0) == 0. &&
//
18
tensor(0, 2) == 0. && tensor(2, 0) == 0. &&
//
19
tensor(1, 2) == 0. && tensor(2, 1) == 0.);
20
}
15
bool
isTensorConvertibleTo1d
(Eigen::Matrix3d
const
& tensor) {
…
}
21
22
bool
isTensorConvertibleTo2d
(Eigen::Matrix3d
const
& tensor)
23
{
24
return
(tensor(0, 2) == 0. && tensor(1, 2) == 0. &&
//
25
tensor(2, 0) == 0. && tensor(2, 1) == 0.);
26
}
22
bool
isTensorConvertibleTo2d
(Eigen::Matrix3d
const
& tensor) {
…
}
27
28
}
// namespace MathLib::VectorizedTensor
12
namespace
MathLib::VectorizedTensor
{
…
}
VectorizedTensor.h
MathLib::VectorizedTensor
Definition
VectorizedTensor.cpp:13
MathLib::VectorizedTensor::isTensorConvertibleTo2d
bool isTensorConvertibleTo2d(Eigen::Matrix3d const &tensor)
Definition
VectorizedTensor.cpp:22
MathLib::VectorizedTensor::isTensorConvertibleTo1d
bool isTensorConvertibleTo1d(Eigen::Matrix3d const &tensor)
Only a diagonal tensor can be converted to a 1d vectorized tensor.
Definition
VectorizedTensor.cpp:15
MathLib
VectorizedTensor.cpp
Generated by
1.12.0