Trilinos::Sacado example
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
Sacado_Wrapper::SymTensor2< dim > Class Template Reference

#include <Sacado_Wrapper.h>

Inheritance diagram for Sacado_Wrapper::SymTensor2< dim >:
Inheritance graph
[legend]
Collaboration diagram for Sacado_Wrapper::SymTensor2< dim >:
Collaboration graph
[legend]

Public Member Functions

 SymTensor2 ()
 
void init_set_dofs (SymmetricTensor< 2, dim > &tensor_double, const unsigned int nbr_total_dofs=n_dofs)
 
void get_tangent (SymmetricTensor< 4, dim > &Tangent, SymmetricTensor< 2, dim, Sacado::Fad::DFad< DFadType > > &sigma)
 
void get_tangent (SymmetricTensor< 2, dim > &Tangent, Sacado::Fad::DFad< DFadType > &argument)
 
void get_tangent (SymmetricTensor< 2, dim, Sacado::Fad::DFad< DFadType > > &Tangent, Sacado::Fad::DFad< DFadType > &argument)
 
void get_curvature (SymmetricTensor< 4, dim > &Curvature, Sacado::Fad::DFad< DFadType > &argument)
 

Public Attributes

std::map< unsigned int, std::pair< unsigned int, unsigned int > > std_map_indicies
 
unsigned int start_index = 0
 

Static Public Attributes

static const unsigned int n_dofs = ((dim==2)?3:6)
 

Constructor & Destructor Documentation

◆ SymTensor2()

template<int dim>
Sacado_Wrapper::SymTensor2< dim >::SymTensor2 ( )
inline
197  {
198  get_index_map<dim>( std_map_indicies );
199  }
std::map< unsigned int, std::pair< unsigned int, unsigned int > > std_map_indicies
Definition: Sacado_Wrapper.h:202

Member Function Documentation

◆ get_curvature()

template<int dim>
void Sacado_Wrapper::SymTensor2< dim >::get_curvature ( SymmetricTensor< 4, dim > &  Curvature,
Sacado::Fad::DFad< DFadType > &  argument 
)
290  {
291  for(unsigned int x=0;x<n_dofs;++x)
292  for(unsigned int y=0;y<n_dofs;++y)
293  {
294  const unsigned int i=std_map_indicies[y].first;
295  const unsigned int j=std_map_indicies[y].second;
296  const unsigned int k=std_map_indicies[x].first;
297  const unsigned int l=std_map_indicies[x].second;
298 
299  double deriv = argument.dx(x).dx(y); // Access the derivatives of the (i,j)-th component of \a sigma
300 
301  if ( k!=l && i!=j )
302  Curvature[i][j][k][l] = 0.25* deriv;
303  else if(k!=l)/*Compare to Voigt notation since only SymmetricTensor instead of Tensor*/
304  {
305  Curvature[i][j][k][l] = 0.5*deriv;
306  Curvature[i][j][l][k] = 0.5*deriv;
307  }
308  else
309  Curvature[i][j][k][l] = deriv;
310  }
311  }
std::map< unsigned int, std::pair< unsigned int, unsigned int > > std_map_indicies
Definition: Sacado_Wrapper.h:202
static const unsigned int n_dofs
Definition: Sacado_Wrapper.h:205

◆ get_tangent() [1/3]

template<int dim>
void Sacado_Wrapper::SymTensor2< dim >::get_tangent ( SymmetricTensor< 4, dim > &  Tangent,
SymmetricTensor< 2, dim, Sacado::Fad::DFad< DFadType > > &  sigma 
)

Referenced by Sacado_Wrapper::DoFs_summary< dim >::get_curvature().

253  {
254  for(unsigned int x=0;x<n_dofs;++x)
255  for(unsigned int y=0;y<n_dofs;++y)
256  {
257  const unsigned int i=std_map_indicies[y].first;
258  const unsigned int j=std_map_indicies[y].second;
259  const unsigned int k=std_map_indicies[x].first;
260  const unsigned int l=std_map_indicies[x].second;
261 
262  if(k!=l)/*Compare to Voigt notation since only SymmetricTensor instead of Tensor*/
263  Tangent[i][j][k][l] = 0.5 * argument[k][l].dx(y).val(); // ToDo: check this on paper (was more like a gut feeling)
264  else
265  Tangent[i][j][k][l] = argument[k][l].dx(y).val();
266  }
267  }
std::map< unsigned int, std::pair< unsigned int, unsigned int > > std_map_indicies
Definition: Sacado_Wrapper.h:202
static const unsigned int n_dofs
Definition: Sacado_Wrapper.h:205

◆ get_tangent() [2/3]

template<int dim>
void Sacado_Wrapper::SymTensor2< dim >::get_tangent ( SymmetricTensor< 2, dim > &  Tangent,
Sacado::Fad::DFad< DFadType > &  argument 
)
239  {
240  for ( unsigned int x=0; x<n_dofs; ++x )
241  {
242  unsigned int i=std_map_indicies[x].first;
243  unsigned int j=std_map_indicies[x].second;
244  if ( i!=j )
245  Tangent[i][j] = 0.5 * argument.dx(x).val();
246  else
247  Tangent[i][j] = argument.dx(x).val();
248  }
249  }
std::map< unsigned int, std::pair< unsigned int, unsigned int > > std_map_indicies
Definition: Sacado_Wrapper.h:202
static const unsigned int n_dofs
Definition: Sacado_Wrapper.h:205

◆ get_tangent() [3/3]

template<int dim>
void Sacado_Wrapper::SymTensor2< dim >::get_tangent ( SymmetricTensor< 2, dim, Sacado::Fad::DFad< DFadType > > &  Tangent,
Sacado::Fad::DFad< DFadType > &  argument 
)
275  {
276  for ( unsigned int x=0; x<n_dofs; ++x )
277  {
278  unsigned int i=std_map_indicies[x].first;
279  unsigned int j=std_map_indicies[x].second;
280  if ( i!=j )
281  Tangent[i][j] = 0.5 * argument.dx(x);
282  else
283  Tangent[i][j] = argument.dx(x);
284  }
285  }
std::map< unsigned int, std::pair< unsigned int, unsigned int > > std_map_indicies
Definition: Sacado_Wrapper.h:202
static const unsigned int n_dofs
Definition: Sacado_Wrapper.h:205

◆ init_set_dofs()

template<int dim>
void Sacado_Wrapper::SymTensor2< dim >::init_set_dofs ( SymmetricTensor< 2, dim > &  tensor_double,
const unsigned int  nbr_total_dofs = n_dofs 
)

Referenced by Sacado_Wrapper::DoFs_summary< dim >::init_set_dofs().

226  {
227  for ( unsigned int x=0; x<n_dofs; ++x )
228  {
229  unsigned int i=std_map_indicies[x].first;
230  unsigned int j=std_map_indicies[x].second;
231  ((*this)[i][j]).diff( x, nbr_total_dofs); // set up the "inner" derivatives
232  ((*this)[i][j]).val() = fad_double(nbr_total_dofs, x, tensor_double[i][j]); // set up the "outer" derivatives
233  }
234  }
std::map< unsigned int, std::pair< unsigned int, unsigned int > > std_map_indicies
Definition: Sacado_Wrapper.h:202
static const unsigned int n_dofs
Definition: Sacado_Wrapper.h:205
Sacado::Fad::DFad< double > fad_double
Definition: Sacado_Wrapper.h:18

Member Data Documentation

◆ n_dofs

template<int dim>
const unsigned int Sacado_Wrapper::SymTensor2< dim >::n_dofs = ((dim==2)?3:6)
static

◆ start_index

template<int dim>
unsigned int Sacado_Wrapper::SymTensor2< dim >::start_index = 0

◆ std_map_indicies

template<int dim>
std::map<unsigned int,std::pair<unsigned int,unsigned int> > Sacado_Wrapper::SymTensor2< dim >::std_map_indicies

The documentation for this class was generated from the following file: