barneyjlu 发表于 2010-12-3 14:13:44

网上看到一个定义粘弹塑性材料的UMAT文件,看不懂

能指点下嘛,它的本构方程是什么样子呀?能说明下它用的是什么材料模型吗?谢谢。
C
C    Explicit integration for isotropic and kinematic hardening
C    elasto-viscoplasticity
C      
C         
      IMPLICIT REAL*8(A-H,O-Z)
C
      OPEN (UNIT=11, FILE='stress.dat', STATUS='old')
C
      alpha = 0.2418e-6
      beta = 0.1135
      E = 1000.
      xnu = 0.3
      G = E/(2.*(1+xnu))
      yield = 10.
C      h = 100.
      h = 0.
      b = 0.1
      q = 100.
      c = 100.
C
      r = 0.
      x = 0.
C
      dt = 1.E-1
      stranrat = 1.e-3
      stran = 0.
C
      do i = 1,10000
      dstran = stranrat*dt
      dpstress = E*dstran
      pstress = E*stran
C
C   yield function
C
      f = stress - x - r - yield
      
      if(f.ge.0.) then
      xphi = alpha*sinh(beta*(stress-x-r-yield))
      dp = xphi*dt
      end if
C
      stran = stran + dstran
      destran = dstran - dp
      dstress = E*destran
      stress = stress + dstress
C
C    linear isotropic hardening
C
      gamma = h
C
C    nonlinear isotropic hardening hardening
C
C      gamma = b*(q-r)
C
      dr = gamma*dp
      r = r + dr
C
C    linear kinematic hardening
C
      dx = c*dp
      x = x + dx
C
      ICOUNT = ICOUNT + 1
      IF(ICOUNT.EQ.100) THEN
      ICOUNT = 0
      WRITE(11,*) STRAN, STRESS
      END IF
C
       end do
C
      CLOSE(11)
      end

zce_119 发表于 2010-12-4 08:48:43

自己建一个简单模型, 验证一下

barneyjlu 发表于 2010-12-4 13:07:55

2# zce_119
我是想那位能知道这个程序用的本构方程是什么,这里我看不出来,能指点下嘛

cohesive1 发表于 2021-9-6 15:44:18

各向同性硬化
页: [1]
查看完整版本: 网上看到一个定义粘弹塑性材料的UMAT文件,看不懂