https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Compute2DIncrementalStrain.h
Go to the documentation of this file.
1//* This file is part of the MOOSE framework
2//* https://mooseframework.inl.gov
3//*
4//* All rights reserved, see COPYRIGHT for full restrictions
5//* https://github.com/idaholab/moose/blob/master/COPYRIGHT
6//*
7//* Licensed under LGPL 2.1, please see LICENSE for details
8//* https://www.gnu.org/licenses/lgpl-2.1.html
9
10#pragma once
11
13
22{
23public:
25
27
28 void initialSetup() override;
29
30protected:
31 virtual void displacementIntegrityCheck() override;
37 virtual void computeTotalStrainIncrement(RankTwoTensor & total_strain_increment) override;
38
44 virtual Real computeOutOfPlaneGradDisp() = 0;
45
50 virtual Real computeOutOfPlaneGradDispOld() = 0;
51
52 const unsigned int _out_of_plane_direction;
53};
Compute2DIncrementalStrain defines a strain increment only for incremental strains in 2D geometries,...
static InputParameters validParams()
virtual void displacementIntegrityCheck() override
virtual Real computeOutOfPlaneGradDispOld()=0
Computes the old out-of-plane component of the displacement gradient; as a virtual function,...
virtual void computeTotalStrainIncrement(RankTwoTensor &total_strain_increment) override
Computes the current and old deformation gradients with the assumptions for 2D geometries,...
virtual Real computeOutOfPlaneGradDisp()=0
Computes the current out-of-plane component of the displacement gradient; as a virtual function,...
ComputeIncrementalStrain defines a strain increment and rotation increment (=1), for small strains.