OGS
MathLib::VectorizedTensor Namespace Reference

Detailed Description

Namespace for vectorized second-order tensor types and operations on those. The tensors are for example, deformation gradients.

Typedefs

template<int DisplacementDim>
using Type = Eigen::Matrix<double, size(DisplacementDim), 1, Eigen::ColMajor>
 

Functions

bool isTensorConvertibleTo1d (Eigen::Matrix3d const &tensor)
 Only a diagonal tensor can be converted to a 1d vectorized tensor.
 
bool isTensorConvertibleTo2d (Eigen::Matrix3d const &tensor)
 
constexpr int size (int const displacement_dim)
 Vectorized tensor size for given displacement dimension.
 
template<typename VectorizedTensor >
constexpr int dimension ()
 Displacement dimension of a vectorized tensor.
 
template<int DisplacementDim>
constexpr auto identity ()
 
template<typename Derived >
double determinant (Eigen::MatrixBase< Derived > const &tensor)
 Computes determinant of a vectorized tensor.
 
template<int DisplacementDim, typename Derived >
Type< DisplacementDim > toVector (Eigen::MatrixBase< Derived > const &tensor)
 
template<int DisplacementDim>
Eigen::Matrix3d toTensor (Type< DisplacementDim > const &tensor)
 Converts a vectorized tensor to a 3x3 matrix.
 

Typedef Documentation

◆ Type

template<int DisplacementDim>
using MathLib::VectorizedTensor::Type = Eigen::Matrix<double, size(DisplacementDim), 1, Eigen::ColMajor>

Vectorized tensor type for given displacement dimension.

Note
The Eigen vector is always a fixed size vector in contrast to a shape matrix policy types like GMatrixPolicyType::GradientVectorType.

Definition at line 72 of file VectorizedTensor.h.

Function Documentation

◆ determinant()

template<typename Derived >
double MathLib::VectorizedTensor::determinant ( Eigen::MatrixBase< Derived > const & tensor)

Computes determinant of a vectorized tensor.

Definition at line 111 of file VectorizedTensor.h.

112{
113 constexpr int displacement_dim = dimension<Derived>();
114 static_assert(0 < displacement_dim && displacement_dim <= 3,
115 "Vectorized tensor determinant is implemented only for "
116 "displacement dimension 1, 2, or 3.");
117
118 if constexpr (displacement_dim == 1)
119 {
120 return tensor[0] * tensor[1] * tensor[2];
121 }
122 if constexpr (displacement_dim == 2)
123 {
124 Eigen::Map<Eigen::Matrix2d const> const top_left{
125 tensor.derived().data()};
126
127 return top_left.determinant() * tensor[4];
128 }
129 if constexpr (displacement_dim == 3)
130 {
131 return Eigen::Map<Eigen::Matrix3d const>(tensor.derived().data())
132 .determinant();
133 }
134}

Referenced by ProcessLib::LargeDeformation::LargeDeformationLocalAssembler< ShapeFunction, DisplacementDim >::updateConstitutiveRelations().

◆ dimension()

template<typename VectorizedTensor >
constexpr int MathLib::VectorizedTensor::dimension ( )
constexpr

Displacement dimension of a vectorized tensor.

Definition at line 46 of file VectorizedTensor.h.

47{
48 static_assert(VectorizedTensor::ColsAtCompileTime == 1);
49 constexpr int rows = VectorizedTensor::RowsAtCompileTime;
50 if (rows == 3)
51 {
52 return 1;
53 }
54 if (rows == 5)
55 {
56 return 2;
57 }
58 if (rows == 9)
59 {
60 return 3;
61 }
63 "Cannot convert vectorized tensor of size {} to displacement "
64 "dimension.",
65 rows);
66}
#define OGS_FATAL(...)
Definition Error.h:26

References OGS_FATAL.

◆ identity()

template<int DisplacementDim>
constexpr auto MathLib::VectorizedTensor::identity ( )
constexpr

Vectorized identity tensor expression. Corresponds to 3x3 identity matrix in all dimensions.

Definition at line 77 of file VectorizedTensor.h.

78{
79 static_assert(
80 0 < DisplacementDim && DisplacementDim <= 3,
81 "Identity is implemented only for displacement dimension 1, 2, or 3.");
83 size(DisplacementDim), 1,
84 [](Eigen::Index const row, [[maybe_unused]] Eigen::Index const col)
85 {
86 assert(col == 0);
87 if constexpr (DisplacementDim == 1)
88 { // All entries are diagonal entries.
89 return 1;
90 }
91 if constexpr (DisplacementDim == 2)
92 {
93 if (row == 0 || row == 3 || row == 4)
94 {
95 return 1;
96 }
97 }
98 if constexpr (DisplacementDim == 3)
99 {
100 if (row == 0 || row == 4 || row == 8)
101 {
102 return 1;
103 }
104 }
105 return 0;
106 });
107}
constexpr int size(int const displacement_dim)
Vectorized tensor size for given displacement dimension.
Eigen::Matrix< double, size(DisplacementDim), 1, Eigen::ColMajor > Type

References size().

◆ isTensorConvertibleTo1d()

bool MathLib::VectorizedTensor::isTensorConvertibleTo1d ( Eigen::Matrix3d const & tensor)

Only a diagonal tensor can be converted to a 1d vectorized tensor.

Definition at line 15 of file VectorizedTensor.cpp.

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}

Referenced by toVector().

◆ isTensorConvertibleTo2d()

bool MathLib::VectorizedTensor::isTensorConvertibleTo2d ( Eigen::Matrix3d const & tensor)

Only a tensor of form \( \left( \begin{array}{ccc} a & b & 0 \\% c & d & 0 \\% 0 & 0 & e \\% \end{array} \right)\) can be converted to a 2d vectorized tensor.

Definition at line 22 of file VectorizedTensor.cpp.

23{
24 return (tensor(0, 2) == 0. && tensor(1, 2) == 0. && //
25 tensor(2, 0) == 0. && tensor(2, 1) == 0.);
26}

Referenced by toVector().

◆ size()

constexpr int MathLib::VectorizedTensor::size ( int const displacement_dim)
constexpr

Vectorized tensor size for given displacement dimension.

Definition at line 25 of file VectorizedTensor.h.

26{
27 if (displacement_dim == 1)
28 {
29 return 3;
30 }
31 if (displacement_dim == 2)
32 {
33 return 5;
34 }
35 if (displacement_dim == 3)
36 {
37 return 9;
38 }
40 "Cannot convert displacement dimension {} to vectorized tensor size.",
41 displacement_dim);
42}

References OGS_FATAL.

Referenced by identity().

◆ toTensor()

template<int DisplacementDim>
Eigen::Matrix3d MathLib::VectorizedTensor::toTensor ( Type< DisplacementDim > const & tensor)

Converts a vectorized tensor to a 3x3 matrix.

Definition at line 204 of file VectorizedTensor.h.

205{
206 static_assert(
207 DisplacementDim == 1 || DisplacementDim == 2 || DisplacementDim == 3,
208 "Conversion from displacement dimension other than 1, 2, or 3 "
209 "is not valid.");
210
211 using Matrix = Eigen::Matrix3d;
212 if constexpr (DisplacementDim == 1)
213 {
214 return tensor.asDiagonal();
215 }
216 if constexpr (DisplacementDim == 2)
217 {
218 Matrix m = Matrix::Zero();
219 m.template block<2, 2>(0, 0) =
220 Eigen::Map<Eigen::Matrix<double, 2, 2> const>(tensor.data());
221 m(2, 2) = tensor(4);
222 return m;
223 }
224 if constexpr (DisplacementDim == 3)
225 {
226 return Eigen::Map<Matrix const>(tensor.data());
227 }
228}

◆ toVector()

template<int DisplacementDim, typename Derived >
Type< DisplacementDim > MathLib::VectorizedTensor::toVector ( Eigen::MatrixBase< Derived > const & tensor)

Converts a 3x3 matrix expression to a vectorized tensor if the conversion for that dimension is possible; see isTensorConvertibleTo1d() and isTensorConvertibleTo2d() functions.

Definition at line 152 of file VectorizedTensor.h.

153{
154 static_assert(0 < DisplacementDim && DisplacementDim <= 3,
155 "Conversion to displacement dimension other than 1, 2, or 3 "
156 "is not valid.");
157
158 constexpr int rows = Derived::RowsAtCompileTime;
159 constexpr int cols = Derived::ColsAtCompileTime;
160 static_assert(rows == 3 || rows == Eigen::Dynamic);
161 static_assert(cols == 3 || cols == Eigen::Dynamic);
162 if (tensor.rows() != 3 || tensor.cols() != 3)
163 {
164 OGS_FATAL(
165 "Incorrect tensor size, must be 3x3, but tensor is {:d}x{:d}.",
166 tensor.rows(), tensor.cols());
167 }
168
169 if constexpr (DisplacementDim == 1)
170 {
171 if (!isTensorConvertibleTo1d(tensor))
172 {
173 OGS_FATAL(
174 "Cannot convert a tensor with non-zero off-diagonal elements "
175 "to a 1d vectorized tensor representation.");
176 }
177 return tensor.diagonal();
178 }
179 if constexpr (DisplacementDim == 2)
180 {
181 if (!isTensorConvertibleTo2d(tensor))
182 {
183 OGS_FATAL(
184 "Cannot convert a tensor with non-zero elements at (0, 2), (1, "
185 "2), (2, 0), and (2, 1) positions to a 2d vectorized tensor "
186 "representation.");
187 }
188 Type<2> result;
189 result.template head<4>() =
190 tensor.template block<2, 2>(0, 0).reshaped();
191 result(4) = tensor(2, 2);
192 return result;
193 }
194 if constexpr (DisplacementDim == 3)
195 {
196 return tensor.reshaped();
197 }
198 OGS_FATAL(
199 "Not all cases handled in the VectorizedTensor::toVector() function.");
200}
bool isTensorConvertibleTo2d(Eigen::Matrix3d const &tensor)

References isTensorConvertibleTo1d(), isTensorConvertibleTo2d(), and OGS_FATAL.