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

#include <Sacado_Wrapper.h>

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

Public Member Functions

SW_double2operator= (double double_init)
 
SW_double2operator= (Sacado::Fad::DFad< DFadType > fad_assignment)
 
void init_set_dofs (const double &double_init, unsigned int nbr_total_dofs=n_dofs)
 
void get_tangent (double &Tangent, Sacado::Fad::DFad< DFadType > &argument)
 
void get_tangent (SymmetricTensor< 2, dim > &Tangent, SymmetricTensor< 2, dim, Sacado::Fad::DFad< DFadType > > &argument, SymTensor2< dim > &eps)
 
void get_curvature (double &Curvature, Sacado::Fad::DFad< DFadType > &argument)
 
void get_curvature (SymmetricTensor< 2, dim > &Curvature, SymmetricTensor< 2, dim, Sacado::Fad::DFad< DFadType > > &argument, SymTensor2< dim > &eps)
 
void get_curvature (SymmetricTensor< 2, dim > &Curvature, Sacado::Fad::DFad< DFadType > &argument, SymTensor2< dim > &eps)
 

Public Attributes

unsigned int start_index = 0
 

Static Public Attributes

static const unsigned int n_dofs = 1
 

Member Function Documentation

◆ get_curvature() [1/3]

template<int dim>
void Sacado_Wrapper::SW_double2< dim >::get_curvature ( double &  Curvature,
Sacado::Fad::DFad< DFadType > &  argument 
)

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

457  {
458  Curvature = argument.dx(this->start_index).dx(this->start_index);
459  }
unsigned int start_index
Definition: Sacado_Wrapper.h:411

◆ get_curvature() [2/3]

template<int dim>
void Sacado_Wrapper::SW_double2< dim >::get_curvature ( SymmetricTensor< 2, dim > &  Curvature,
SymmetricTensor< 2, dim, Sacado::Fad::DFad< DFadType > > &  argument,
SymTensor2< dim > &  eps 
)

References Sacado_Wrapper::SymTensor2< dim >::n_dofs, and Sacado_Wrapper::SymTensor2< dim >::std_map_indicies.

467  {
468  for(unsigned int x=0;x<eps.n_dofs;++x)
469  {
470  const unsigned int i=eps.std_map_indicies[x].first;
471  const unsigned int j=eps.std_map_indicies[x].second;
472 
473 // if ( i!=j )
474 // Curvature[i][j] = 0.5 * argument[i][j].val().dx(start_index); // ToDo: check the factor 0.5
475 // else
476  Curvature[i][j] = argument[i][j].val().dx(start_index);
477  }
478  }
unsigned int start_index
Definition: Sacado_Wrapper.h:411

◆ get_curvature() [3/3]

template<int dim>
void Sacado_Wrapper::SW_double2< dim >::get_curvature ( SymmetricTensor< 2, dim > &  Curvature,
Sacado::Fad::DFad< DFadType > &  argument,
SymTensor2< dim > &  eps 
)

References Sacado_Wrapper::SymTensor2< dim >::n_dofs, and Sacado_Wrapper::SymTensor2< dim >::std_map_indicies.

485  {
486  for(unsigned int x=0;x<eps.n_dofs;++x)
487  {
488  const unsigned int i=eps.std_map_indicies[x].first;
489  const unsigned int j=eps.std_map_indicies[x].second;
490 
491  if ( i!=j )
492  Curvature[i][j] = 0.5 * argument.dx(start_index).dx(x); // ToDo: check the factor 0.5
493  else
494  Curvature[i][j] = argument.dx(start_index).dx(x);
495  }
496  }
unsigned int start_index
Definition: Sacado_Wrapper.h:411

◆ get_tangent() [1/2]

template<int dim>
void Sacado_Wrapper::SW_double2< dim >::get_tangent ( double &  Tangent,
Sacado::Fad::DFad< DFadType > &  argument 
)

Referenced by sacado_test_8().

437  {
438  Tangent = argument.dx(this->start_index).val();
439  }
unsigned int start_index
Definition: Sacado_Wrapper.h:411

◆ get_tangent() [2/2]

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

References Sacado_Wrapper::SymTensor2< dim >::n_dofs, and Sacado_Wrapper::SymTensor2< dim >::std_map_indicies.

444  {
445  for(unsigned int x=0;x<eps.n_dofs;++x)
446  {
447  const unsigned int i=eps.std_map_indicies[x].first;
448  const unsigned int j=eps.std_map_indicies[x].second;
449  // ToDo: find a better way to loop over the indices than using eps as input argument
450  Tangent[i][j] = argument[i][j].dx(start_index).val();
451  }
452  }
unsigned int start_index
Definition: Sacado_Wrapper.h:411

◆ init_set_dofs()

template<int dim>
void Sacado_Wrapper::SW_double2< dim >::init_set_dofs ( const double &  double_init,
unsigned int  nbr_total_dofs = n_dofs 
)

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

429  {
430  (*this).diff( start_index , nbr_total_dofs );
431  (*this).val() = fad_double(nbr_total_dofs, start_index, double_init);
432  }
Sacado::Fad::DFad< double > fad_double
Definition: Sacado_Wrapper.h:18
unsigned int start_index
Definition: Sacado_Wrapper.h:411

◆ operator=() [1/2]

template<int dim>
SW_double2& Sacado_Wrapper::SW_double2< dim >::operator= ( double  double_init)
inline
407 { Sacado::Fad::DFad<DFadType>::operator =( double_init ) ;return *this;}

◆ operator=() [2/2]

template<int dim>
SW_double2& Sacado_Wrapper::SW_double2< dim >::operator= ( Sacado::Fad::DFad< DFadType fad_assignment)
inline
408 { Sacado::Fad::DFad<DFadType>::operator =( fad_assignment ) ;return *this;}

Member Data Documentation

◆ n_dofs

template<int dim>
const unsigned int Sacado_Wrapper::SW_double2< dim >::n_dofs = 1
static

◆ start_index

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

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