https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Compute2DFiniteStrain.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
12#include "ComputeFiniteStrain.h"
13
22{
23public:
25
26 Compute2DFiniteStrain(const InputParameters & parameters);
27
28 void initialSetup() override;
29
30 virtual void computeProperties() override;
31
32protected:
33 virtual void displacementIntegrityCheck() override;
34
39 virtual Real computeOutOfPlaneGradDisp() = 0;
40
45 virtual Real computeOutOfPlaneGradDispOld() = 0;
46
47 const unsigned int _out_of_plane_direction;
48};
Compute2DFiniteStrain defines a strain increment and a rotation increment for finite strains in 2D ge...
const unsigned int _out_of_plane_direction
static InputParameters validParams()
virtual void displacementIntegrityCheck() override
virtual void computeProperties() override
virtual Real computeOutOfPlaneGradDispOld()=0
Computes the old out-of-plane component of the displacement gradient; as a virtual function,...
virtual Real computeOutOfPlaneGradDisp()=0
Computes the current out-of-plane component of the displacement gradient; as a virtual function,...
ComputeFiniteStrain defines a strain increment and rotation increment, for finite strains.