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

#include <Sacado_Wrapper.h>

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

Public Member Functions

SW_doubleoperator= (double double_init)
 
SW_doubleoperator= (fad_double fad_assignment)
 
void init (const double &double_init)
 
void set_dofs (unsigned int nbr_total_dofs=n_dofs)
 
void get_tangent (SymmetricTensor< 2, dim > &Tangent, SymmetricTensor< 2, dim, fad_double > &sigma)
 
void get_tangent (double &Tangent, fad_double &argument)
 
void get_values (double &return_double)
 

Public Attributes

unsigned int start_index = 0
 

Static Public Attributes

static const unsigned int n_dofs = 1
 

Member Function Documentation

◆ get_tangent() [1/2]

template<int dim>
void Sacado_Wrapper::SW_double< dim >::get_tangent ( SymmetricTensor< 2, dim > &  Tangent,
SymmetricTensor< 2, dim, fad_double > &  sigma 
)

Referenced by sacado_test_4().

364  {
365  // reassemble the tangent as a SECOND order tensor
366  for ( unsigned int i=0; i<dim; ++i)
367  for ( unsigned int j=0; j<dim; ++j )
368  {
369  double *derivs = &sigma[i][j].fastAccessDx(0); // Access derivatives
370  Tangent[i][j] = derivs[ this->start_index ]; // ToDo: check whether the 0.5* is necessary here too
371  }
372  }
unsigned int start_index
Definition: Sacado_Wrapper.h:337

◆ get_tangent() [2/2]

template<int dim>
void Sacado_Wrapper::SW_double< dim >::get_tangent ( double &  Tangent,
fad_double argument 
)
376  {
377  double *derivs = &argument.fastAccessDx(0);
378  Tangent = derivs[ this->start_index ];
379  }
unsigned int start_index
Definition: Sacado_Wrapper.h:337

◆ get_values()

template<int dim>
void Sacado_Wrapper::SW_double< dim >::get_values ( double &  return_double)
383  {
384  return_double = (*this).val();
385  }

◆ init()

template<int dim>
void Sacado_Wrapper::SW_double< dim >::init ( const double &  double_init)

Referenced by sacado_test_4().

352  {
353  (*this) = double_init;
354  }

◆ operator=() [1/2]

template<int dim>
SW_double& Sacado_Wrapper::SW_double< dim >::operator= ( double  double_init)
inline
333 { fad_double::operator =( double_init ) ;return *this;}

◆ operator=() [2/2]

template<int dim>
SW_double& Sacado_Wrapper::SW_double< dim >::operator= ( fad_double  fad_assignment)
inline
334 { fad_double::operator =( fad_assignment ) ;return *this;}

◆ set_dofs()

template<int dim>
void Sacado_Wrapper::SW_double< dim >::set_dofs ( unsigned int  nbr_total_dofs = n_dofs)

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

358  {
359  (*this).diff( this->start_index, nbr_total_dofs );
360  }
unsigned int start_index
Definition: Sacado_Wrapper.h:337

Member Data Documentation

◆ n_dofs

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

◆ start_index

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

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