Trilinos::Sacado example
Trilinos::Sacado: Computing derivatives incorporating tensors

Examples and functions to compute derivatives of tensor-valued equations with Sacado

The Aim

The aim is to compute e. g. the tangent

as a fourth order tensor on the material point level (quadrature point) based on the implementation of the stress-equation sigma=sigma(eps,phi) only. Similarly, we can compute the tangent in combination with a scalar variable, such as the scalar damage phi and compute second derivatives (see feature list).

The here shown code only implements functions (and finally the Wrapper) to pack the derivatives related to tensors into a nice format, pass them to Sacado to compute the derivatives and unpack the results back into tensors.

This approach might be useful when you want to compute e. g. the tangent modulus at quadrature points and keep everything in an enclosed material model function/file. An example: You developed or found a material model, lets say elasto-plasticity with some saturated hardening, and want to implement this model to compare it to another one. So you implement the equations and possibly subiterations on the material point level into your material model that gets the strain and the history variables as inputs. Now you would need to derive the tangents (e.g. d_stress/d_strain) to be able to assemble the tangent. However, the latter can take some effort especially for more complicated models or if the equations are still being developed as we speak. With the Sacado_Wrapper you implement the equations (e.g. stress equation) as you would normally do, change the data types (when you use templated functions here, that is done automatically) and set the dofs as shown in the documentation. In the end you call get_tangent() and there you have your tangent (quadratic convergence without effort). When you're satisfied with the material model, you can derive the tangent by hand and simply change the data types back and replace the get_tangent() call with your analytical tangent equation. To sum up, the Wrapper enables you keep the standard material model framework and still use the power (and beauty) of automatic differentation.

It will probably be significantly more efficient if possible to assemble the residuum and compute its derivatives as shown in, for instance, the deal.ii tutorial 33 https://www.dealii.org/current/doxygen/deal.II/step_33.html with already implemented deal.ii-functionality.

The Documentation

The Doxygen documentation for the code can be found here https://jfriedlein.github.io/Sacado-Testing/html/index.html. It shows a few examples and describes how to use the Sacado_Wrapper.

Current features of the Sacado_Wrapper

Legend:

(2nd order symmetric tensor, here: strain tensor)

(scalar, here: global damage variable)

(scalar, here: free energy)

(4th order sym. tensor, here: consistent tangent moduli)

(2nd order sym. tensors)

(scalar derivatives)

Features:

;

;

; ; ;

How to start

Instructions on how to "install" the Sacado_Wrapper

  1. Download the file "Sacado_Wrapper.h" and place it into your working directory, e.g. where your main code such as Sacado_examples.cc is.
  2. Include the .h file with your other headers in your code via '#include "Sacado_Wrapper.h"'.
  3. Copy one of the examples into your code for testing.
  4. Compile, run and play around with the code.

ToDo:

Test cases: