MarmotTensor.h
Go to the documentation of this file.
1 /* ---------------------------------------------------------------------
2  * _
3  * _ __ ___ __ _ _ __ _ __ ___ ___ | |_
4  * | '_ ` _ \ / _` | '__| '_ ` _ \ / _ \| __|
5  * | | | | | | (_| | | | | | | | | (_) | |_
6  * |_| |_| |_|\__,_|_| |_| |_| |_|\___/ \__|
7  *
8  * Unit of Strength of Materials and Structural Analysis
9  * University of Innsbruck,
10  * 2020 - today
11  *
12  * festigkeitslehre@uibk.ac.at
13  *
14  * Matthias Neuner matthias.neuner@uibk.ac.at
15  *
16  * This file is part of the MAteRialMOdellingToolbox (marmot).
17  *
18  * This library is free software; you can redistribute it and/or
19  * modify it under the terms of the GNU Lesser General Public
20  * License as published by the Free Software Foundation; either
21  * version 2.1 of the License, or (at your option) any later version.
22  *
23  * The full text of the license can be found in the file LICENSE.md at
24  * the top level directory of marmot.
25  * ---------------------------------------------------------------------
26  */
27 
28 #pragma once
29 #include "Marmot/MarmotJournal.h"
30 #include "Marmot/MarmotTypedefs.h"
31 #include "Marmot/MarmotVoigt.h"
32 #include <iostream>
33 #include <utility>
34 
35 namespace Marmot {
36  namespace ContinuumMechanics::CommonTensors {
37  extern const EigenTensors::Tensor3333d I2xI2;
38  extern const EigenTensors::Tensor3333d Isym;
39  extern const EigenTensors::Tensor3333d Iskew;
43 
46 
47  extern const EigenTensors::Tensor33d I2;
48 
49  constexpr int getNumberOfDofForRotation( int nDim )
50  {
51  if ( nDim == 2 )
52  return 1;
53  else
54  return 3;
55  }
56 
57  template < int sizeI, int sizeJ >
58  Eigen::Matrix< double, sizeI * sizeJ, sizeI * sizeJ > makeIndexSwapTensor()
59  {
60  // Aux. Matrix, which helps to swap indices in Eigen::Matrices abused as higher order Tensors by
61  // multiplication ,
62  //
63  // T_(ij)(kl) * IndexSwapTensor_(kl)(lk) = T_(ij)(lk)
64  //
65  // For instance:
66  //
67  // Matrix3d t;
68  // t<<1,2,3,4,5,6,7,8,9;
69  // const auto P = makeIndexSwapTensor<3,3>();
70  // std::cout << t.reshaped().transpose() << std::endl;
71  // std::cout << t.reshaped().transpose() * P << std::endl;
72  //
73  // Output:
74  //
75  // 1,4,7,2,5,8,3,6,9
76  // 1,2,3,4,5,6,7,8,9
77  //
78 
79  Eigen::Matrix< double, sizeI * sizeJ, sizeI * sizeJ > P;
80 
81  auto d = []( int a, int b ) -> double { return a == b ? 1.0 : 0.0; };
82 
83  for ( int i = 0; i < sizeI; i++ )
84  for ( int j = 0; j < sizeJ; j++ )
85  for ( int l = 0; l < sizeI; l++ )
86  for ( int k = 0; k < sizeJ; k++ )
87  P( i + j * sizeI, l * sizeJ + k ) = d( i, l ) * d( k, j );
88 
89  return P;
90  }
91 
92  template < int nDim >
93  constexpr Eigen::TensorFixedSize< double, Eigen::Sizes< getNumberOfDofForRotation( nDim ), nDim, nDim > > getReferenceToCorrectLeviCivita()
94  // template <int nDim>
95  // template <int nDim=2>
96  // constexpr Eigen::TensorFixedSize< double, Eigen::Sizes<getNumberOfDofForRotation (nDim), nDim, nDim> >
97  // getReferenceToCorrectLeviCivita()
98  {
99  if constexpr ( nDim == 2 )
100  return LeviCivita2D;
101  else
102  return LeviCivita3D;
103  }
104 
105  } // namespace ContinuumMechanics::CommonTensors
106 
107  namespace ContinuumMechanics::TensorUtility {
108 
109  constexpr int d( int a, int b )
110  {
111  return a == b ? 1 : 0;
112  }
113 
114  template < int x,
115  int y,
116  typename T,
117  typename = std::enable_if< !std::is_const< std::remove_reference< T > >::value > >
118  auto as( T& t )
119  {
120  return Eigen::Map< Eigen::Matrix< typename T::Scalar, x, y > >( t.data() );
121  }
122 
123  template < int x, int y, typename T, typename = void >
124  auto as( const T& t )
125  {
126  return Eigen::Map< const Eigen::Matrix< typename T::Scalar, x, y > >( t.data() );
127  }
128 
129  template < typename Derived,
130  typename = std::enable_if< !std::is_const< std::remove_reference< Derived > >::value > >
131  auto flatten( Derived& t )
132  {
133  return Eigen::Map<
134  Eigen::Matrix< typename Derived::Scalar, Derived::RowsAtCompileTime * Derived::ColsAtCompileTime, 1 > >(
135  t.data() );
136  }
137 
138  template < typename Derived, typename = void >
139  auto flatten( const Derived& t )
140  {
141  return Eigen::Map<
142  const Eigen::Matrix< typename Derived::Scalar, Derived::RowsAtCompileTime * Derived::ColsAtCompileTime, 1 > >(
143  t.data() );
144  }
145 
146  template < int... Pairs >
147  constexpr auto contractionDims() // should be evaluated at compile time
148  {
149  static_assert( sizeof...( Pairs ) % 2 == 0, "Pairs must contain an even number of elements." );
150 
151  constexpr int numPairs = sizeof...( Pairs ) / 2;
152 
153  Eigen::array< Eigen::IndexPair< int >, numPairs > result{};
154 
155  if constexpr ( numPairs > 0 ) { // return empty array if no pairs are given
156  constexpr int values[] = { Pairs... }; // Pairs... expands the parameter pack
157 
158  // Fill the result array at compile-time
159  for ( int i = 0; i < numPairs; ++i ) {
160  result[i] = { values[2 * i], values[2 * i + 1] };
161  }
162  }
163  return result;
164  }
165 
166  Eigen::Matrix3d dyadicProduct( const Eigen::Vector3d& vector1, const Eigen::Vector3d& vector2 );
167 
168  namespace IndexNotation {
169  template < int nDim >
170  constexpr std::pair< int, int > fromVoigt( int ij )
171  {
172  if constexpr ( nDim == 1 )
173  return std::pair< int, int >( 0, 0 );
174  else if ( nDim == 2 )
175  switch ( ij ) {
176  case 0: return std::pair< int, int >( 0, 0 );
177  case 1: return std::pair< int, int >( 1, 1 );
178  case 2: return std::pair< int, int >( 0, 1 );
179  }
180 
181  else if ( nDim == 3 ) {
182  switch ( ij ) {
183  case 0: return std::pair< int, int >( 0, 0 );
184  case 1: return std::pair< int, int >( 1, 1 );
185  case 2: return std::pair< int, int >( 2, 2 );
186  case 3: return std::pair< int, int >( 0, 1 );
187  case 4: return std::pair< int, int >( 0, 2 );
188  case 5: return std::pair< int, int >( 1, 2 );
189  }
190  }
191 
192  throw std::invalid_argument( MakeString()
193  << __PRETTY_FUNCTION__ << ": invalid dimension / voigt index specified" );
194  }
195 
196  template < int nDim >
197  constexpr int toVoigt( int i, int j )
198  {
199  if constexpr ( nDim == 1 )
200  return 0;
201  else if ( nDim == 2 )
202  return ( i == j ) ? ( i == 0 ? 0 : 1 ) : 2;
203 
204  else if ( nDim == 3 ) {
205  constexpr int tensor2VoigtNotationIndicesMapping[3][3] = { { 0, 3, 4 }, { 3, 1, 5 }, { 4, 5, 2 } };
206  return tensor2VoigtNotationIndicesMapping[i][j];
207  }
208 
209  throw std::invalid_argument( MakeString() << __PRETTY_FUNCTION__ << ": invalid dimension specified" );
210  }
211 
212  template < int nDim >
213  Eigen::TensorFixedSize< double, Eigen::Sizes< VOIGTFROMDIM( nDim ), nDim, nDim > > voigtMap()
214  {
215  using namespace Eigen;
216  Eigen::TensorFixedSize< double, Eigen::Sizes< VOIGTFROMDIM( nDim ), nDim, nDim > > result;
217  result.setZero();
218  for ( int i = 0; i < nDim; i++ )
219  for ( int j = 0; j < nDim; j++ )
220  result( toVoigt< nDim >( i, j ), i, j ) = 1;
221  return result;
222  }
223 
224  } // namespace IndexNotation
225 
226  // namespace ContinuumMechanics::VoigtNotation
227 
228  } // namespace ContinuumMechanics::TensorUtility
229 
230 } // namespace Marmot
Marmot::ContinuumMechanics::CommonTensors::LeviCivita2D
const EigenTensors::Tensor122d LeviCivita2D
Definition: MarmotTensor.cpp:133
Marmot::ContinuumMechanics::CommonTensors::getReferenceToCorrectLeviCivita
constexpr Eigen::TensorFixedSize< double, Eigen::Sizes< getNumberOfDofForRotation(nDim), nDim, nDim > > getReferenceToCorrectLeviCivita()
Definition: MarmotTensor.h:93
Marmot::ContinuumMechanics::TensorUtility::IndexNotation::voigtMap
Eigen::TensorFixedSize< double, Eigen::Sizes< VOIGTFROMDIM(nDim), nDim, nDim > > voigtMap()
Definition: MarmotTensor.h:213
Marmot::ContinuumMechanics::TensorUtility::contractionDims
constexpr auto contractionDims()
Definition: MarmotTensor.h:147
MarmotJournal.h
MarmotTypedefs.h
Marmot::ContinuumMechanics::CommonTensors::dDeviatoricStress_dStress
const EigenTensors::Tensor3333d dDeviatoricStress_dStress
Definition: MarmotTensor.cpp:103
Marmot::ContinuumMechanics::CommonTensors::I2xI2
const EigenTensors::Tensor3333d I2xI2
Definition: MarmotTensor.cpp:48
Marmot::ContinuumMechanics::CommonTensors::IFourthOrder
const EigenTensors::Tensor3333d IFourthOrder
Definition: MarmotTensor.cpp:20
Marmot::ContinuumMechanics::CommonTensors::IFourthOrderTranspose
const EigenTensors::Tensor3333d IFourthOrderTranspose
Definition: MarmotTensor.cpp:34
MarmotVoigt.h
Marmot::ContinuumMechanics::CommonTensors::Isym
const EigenTensors::Tensor3333d Isym
Definition: MarmotTensor.cpp:74
Marmot::FiniteElement::Spatial2D::nDim
constexpr int nDim
Definition: MarmotFiniteElement.h:112
Marmot::Vector3d
Eigen::Matrix< double, 3, 1 > Vector3d
Definition: MarmotTypedefs.h:42
VOIGTFROMDIM
#define VOIGTFROMDIM(x)
Definition: MarmotVoigt.h:35
Marmot::ContinuumMechanics::TensorUtility::d
constexpr int d(int a, int b)
Definition: MarmotTensor.h:109
Marmot::ContinuumMechanics::TensorUtility::dyadicProduct
Eigen::Matrix3d dyadicProduct(const Eigen::Vector3d &vector1, const Eigen::Vector3d &vector2)
Definition: MarmotTensor.cpp:138
Marmot::EigenTensors::Tensor33d
Eigen::TensorFixedSize< double, Eigen::Sizes< 3, 3 > > Tensor33d
Definition: MarmotTypedefs.h:80
Marmot::Matrix3d
Eigen::Matrix< double, 3, 3 > Matrix3d
Definition: MarmotTypedefs.h:40
Marmot::EigenTensors::Tensor3333d
Eigen::TensorFixedSize< double, Eigen::Sizes< 3, 3, 3, 3 > > Tensor3333d
Definition: MarmotTypedefs.h:73
Marmot::ContinuumMechanics::TensorUtility::IndexNotation::toVoigt
constexpr int toVoigt(int i, int j)
Definition: MarmotTensor.h:197
Marmot
This file includes functions needed for calculations with stress and strain tensors written in voigt ...
Definition: MarmotTesting.h:32
Marmot::ContinuumMechanics::TensorUtility::IndexNotation::fromVoigt
constexpr std::pair< int, int > fromVoigt(int ij)
Definition: MarmotTensor.h:170
Marmot::ContinuumMechanics::CommonTensors::LeviCivita3D
const EigenTensors::Tensor333d LeviCivita3D
Definition: MarmotTensor.cpp:132
Marmot::ContinuumMechanics::TensorUtility::as
auto as(T &t)
Definition: MarmotTensor.h:118
Marmot::ContinuumMechanics::VoigtNotation::P
const Marmot::Vector6d P
Definition: MarmotVoigt.cpp:16
Marmot::ContinuumMechanics::TensorUtility::flatten
auto flatten(Derived &t)
Definition: MarmotTensor.h:131
Marmot::ContinuumMechanics::CommonTensors::I2
const EigenTensors::Tensor33d I2
Definition: MarmotTensor.cpp:60
Marmot::ContinuumMechanics::CommonTensors::Iskew
const EigenTensors::Tensor3333d Iskew
Definition: MarmotTensor.cpp:88
Marmot::ContinuumMechanics::CommonTensors::makeIndexSwapTensor
Eigen::Matrix< double, sizeI *sizeJ, sizeI *sizeJ > makeIndexSwapTensor()
Definition: MarmotTensor.h:58
Marmot::EigenTensors::Tensor122d
Eigen::TensorFixedSize< double, Eigen::Sizes< 1, 2, 2 > > Tensor122d
Definition: MarmotTypedefs.h:75
Marmot::EigenTensors::Tensor333d
Eigen::TensorFixedSize< double, Eigen::Sizes< 3, 3, 3 > > Tensor333d
Definition: MarmotTypedefs.h:74
Marmot::ContinuumMechanics::CommonTensors::getNumberOfDofForRotation
constexpr int getNumberOfDofForRotation(int nDim)
Definition: MarmotTensor.h:49
MakeString
Definition: MarmotJournal.h:32