Global Strain

The global strain system enables capturing the volume change, shear deformation etc. while still maintaining the periodicity. It relaxes the stresses along the periodic directions and allows the corresponding deformation. This, combined with the periodic displacement, enforces the strain periodicity.

The global strain is computed by setting integral of each of the stress components σij\sigma_{ij} in the periodic direction to zero such that

Ω(σijσij0)dΩ=0 \int_\Omega {(\sigma_{ij} - \sigma^0_{ij})} d\Omega = 0(1)

Here, indices ii and jj corresponds to the periodic directions and associated periodic displacement components, respectively. σij0\sigma^0_{ij} denotes the components of the stress tensor representing the applied loads in the periodic directions. The components of the global strain are considered constant over the whole domain.

The total strain ϵijtotal\epsilon_{ij}^{total} at any point is calculated considering the contribution of the global strain tensor as,

ϵijtotal=ϵij+ϵijgϵij0 \epsilon_{ij}^{total} = \epsilon_{ij} + \epsilon_{ij}^{g} - \epsilon_{ij}^{0}(2)

where ϵij\epsilon_{ij} are the strain components calculated from the displacement gradients, ϵijg\epsilon_{ij}^g are the global strain components, and ϵij0\epsilon_{ij}^0 are the eigen strain components. An additional displacement field ug\boldsymbol u^g is generated to visualize the effect of the global strain as

ug=(rr0)ϵg \boldsymbol {u}^g = (\boldsymbol {r} - \boldsymbol {r}_{0}) \boldsymbol{\epsilon}^g(3)

where r\boldsymbol {r} is the position vector, r0\boldsymbol{r}_{0} is the location of the reference point, and ϵg\boldsymbol{\epsilon}^g is the global strain tensor. The reference point could be any fixed (utotal=0\boldsymbol {u}^{total} = \boldsymbol {0}) point in the domain. For maintaining periodicity, it is recommended to fix the center point of the simulation domain as the reference point.

The total displacement is represented as

utotal=u+ug \boldsymbol {u}^{total} = \boldsymbol {u} + \boldsymbol {u}^g(4)

where u\boldsymbol u is the local displacement field calculated from the mechanical equilibrium.

GlobalStrainAction can be used to set up the model for global strain and corresponding displacement calculation. This action can be created using the following syntax.

Example Input File Syntax

[./GlobalStrain]
  [./global_strain]
    scalar_global_strain = global_strain
    displacements = 'u_x u_y u_z'
    auxiliary_displacements = 'disp_x disp_y disp_z'
    global_displacements = 'ug_x ug_y ug_z'
  [../]
[../]
(contrib/moose/modules/solid_mechanics/test/tests/global_strain/global_strain_action.i)

Subblocks

The subblocks of the GlobalStrain action triggers MOOSE objects to be built. It can be applied to the whole domain using a single subblock

[Physics/SolidMechanics/GlobalStrain]
  [./all]
    ...
  [../]
[]

or multiple subblocks can be used to apply block restrictions to the objects

[Physics/SolidMechanics/GlobalStrain]
  [./block_a]
    ...
  [../]
  [./block_b]
    ...
  [../]
[]

Available Actions