https://mooseframework.inl.gov
Loading...
Searching...
No Matches
Compute1DFiniteStrain.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
20{
21public:
23
24 Compute1DFiniteStrain(const InputParameters & parameters);
25
26 void computeProperties() override;
27
28protected:
31 virtual Real computeGradDispYY() = 0;
32
35 virtual Real computeGradDispYYOld() = 0;
36
39 virtual Real computeGradDispZZ() = 0;
40
43 virtual Real computeGradDispZZOld() = 0;
44};
Compute1DFiniteStrain defines a strain increment for finite strains in 1D problems,...
void computeProperties() override
virtual Real computeGradDispZZ()=0
Computes the current dUz/dz; as a virtual function, this function is overwritten for the specific geo...
virtual Real computeGradDispYY()=0
Computes the current dUy/dY; as a virtual function, this function is overwritten for the specific geo...
virtual Real computeGradDispZZOld()=0
Computes the old dUz/dz; as a virtual function, this function is overwritten for the specific geometr...
static InputParameters validParams()
virtual Real computeGradDispYYOld()=0
Computes the old dUy/dY; as a virtual function, this function is overwritten for the specific geometr...
ComputeFiniteStrain defines a strain increment and rotation increment, for finite strains.