www.mooseframework.org
Compute2DFiniteStrain.h
Go to the documentation of this file.
1 //* This file is part of the MOOSE framework
2 //* https://www.mooseframework.org
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 {
23 public:
25 
27 
28  void initialSetup() override;
29 
30  virtual void computeProperties() override;
31 
32 protected:
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 };
virtual void displacementIntegrityCheck() override
static InputParameters validParams()
Compute2DFiniteStrain(const InputParameters &parameters)
virtual Real computeOutOfPlaneGradDisp()=0
Computes the current out-of-plane component of the displacement gradient; as a virtual function...
DIE A HORRIBLE DEATH HERE typedef LIBMESH_DEFAULT_SCALAR_TYPE Real
ComputeFiniteStrain defines a strain increment and rotation increment, for finite strains...
virtual Real computeOutOfPlaneGradDispOld()=0
Computes the old out-of-plane component of the displacement gradient; as a virtual function...
const InputParameters & parameters() const
const unsigned int _out_of_plane_direction
Compute2DFiniteStrain defines a strain increment and a rotation increment for finite strains in 2D ge...
virtual void computeProperties() override