UMAT-ABAQUS
A general framework to develop material models (UMAT) in ABAQUS
vol.for
Go to the documentation of this file.
1  SUBROUTINE vol(SSEV,PV,PPV,K,DET)
2 C> VOLUMETRIC CONTRIBUTION :STRAIN ENERGY FUNCTION AND DERIVATIVES
3  IMPLICIT NONE
4  include 'PARAM_UMAT.INC'
5 C
6  DOUBLE PRECISION SSEV,PV,PPV
7  DOUBLE PRECISION K,G,DET,AUX
8 C
9  g=(one/four)*(det*det-one-two*log(det))
10 C
11  ssev=k*g
12 C
13  pv=k*(one/two)*(det-one/det)
14  aux=k*(one/two)*(one+one/(det*det))
15  ppv=pv+det*aux
16 C
17  RETURN
18  END SUBROUTINE vol
subroutine vol(SSEV, PV, PPV, K, DET)
Definition: vol.for:2