corrected the constitutive law for j2-plasticity in Lp and its tangent and dotState.

This commit is contained in:
Christoph Kords 2009-06-23 10:39:29 +00:00
parent 0873231e78
commit 06ed8c8177
2 changed files with 236 additions and 148 deletions

View File

@ -14,11 +14,11 @@
! c11 110.9e9 # (3 C11 + 2 C12 + 2 C44) / 5 ... with C44 = C11-C12 !! ! c11 110.9e9 # (3 C11 + 2 C12 + 2 C44) / 5 ... with C44 = C11-C12 !!
! c12 58.34e9 # (1 C11 + 4 C12 - 1 C44) / 5 ! c12 58.34e9 # (1 C11 + 4 C12 - 1 C44) / 5
! taylorfactor 3 ! taylorfactor 3
! s0 31e6 ! tau0 31e6
! gdot0 0.001 ! gdot0 0.001
! n 20 ! n 20
! h0 75e6 ! h0 75e6
! s_sat 63e6 ! tau_sat 63e6
! w0 2.25 ! w0 2.25
MODULE constitutive_j2 MODULE constitutive_j2
@ -38,11 +38,11 @@ MODULE constitutive_j2
real(pReal), dimension(:,:,:), allocatable :: constitutive_j2_Cslip_66 real(pReal), dimension(:,:,:), allocatable :: constitutive_j2_Cslip_66
!* Visco-plastic constitutive_j2 parameters !* Visco-plastic constitutive_j2 parameters
real(pReal), dimension(:), allocatable :: constitutive_j2_fTaylor real(pReal), dimension(:), allocatable :: constitutive_j2_fTaylor
real(pReal), dimension(:), allocatable :: constitutive_j2_s0 real(pReal), dimension(:), allocatable :: constitutive_j2_tau0
real(pReal), dimension(:), allocatable :: constitutive_j2_gdot0 real(pReal), dimension(:), allocatable :: constitutive_j2_gdot0
real(pReal), dimension(:), allocatable :: constitutive_j2_n real(pReal), dimension(:), allocatable :: constitutive_j2_n
real(pReal), dimension(:), allocatable :: constitutive_j2_h0 real(pReal), dimension(:), allocatable :: constitutive_j2_h0
real(pReal), dimension(:), allocatable :: constitutive_j2_s_sat real(pReal), dimension(:), allocatable :: constitutive_j2_tau_sat
real(pReal), dimension(:), allocatable :: constitutive_j2_w0 real(pReal), dimension(:), allocatable :: constitutive_j2_w0
@ -85,11 +85,11 @@ subroutine constitutive_j2_init(file)
allocate(constitutive_j2_C12(maxNinstance)) ; constitutive_j2_C12 = 0.0_pReal allocate(constitutive_j2_C12(maxNinstance)) ; constitutive_j2_C12 = 0.0_pReal
allocate(constitutive_j2_Cslip_66(6,6,maxNinstance)) ; constitutive_j2_Cslip_66 = 0.0_pReal allocate(constitutive_j2_Cslip_66(6,6,maxNinstance)) ; constitutive_j2_Cslip_66 = 0.0_pReal
allocate(constitutive_j2_fTaylor(maxNinstance)) ; constitutive_j2_fTaylor = 0.0_pReal allocate(constitutive_j2_fTaylor(maxNinstance)) ; constitutive_j2_fTaylor = 0.0_pReal
allocate(constitutive_j2_s0(maxNinstance)) ; constitutive_j2_s0 = 0.0_pReal allocate(constitutive_j2_tau0(maxNinstance)) ; constitutive_j2_tau0 = 0.0_pReal
allocate(constitutive_j2_gdot0(maxNinstance)) ; constitutive_j2_gdot0 = 0.0_pReal allocate(constitutive_j2_gdot0(maxNinstance)) ; constitutive_j2_gdot0 = 0.0_pReal
allocate(constitutive_j2_n(maxNinstance)) ; constitutive_j2_n = 0.0_pReal allocate(constitutive_j2_n(maxNinstance)) ; constitutive_j2_n = 0.0_pReal
allocate(constitutive_j2_h0(maxNinstance)) ; constitutive_j2_h0 = 0.0_pReal allocate(constitutive_j2_h0(maxNinstance)) ; constitutive_j2_h0 = 0.0_pReal
allocate(constitutive_j2_s_sat(maxNinstance)) ; constitutive_j2_s_sat = 0.0_pReal allocate(constitutive_j2_tau_sat(maxNinstance)) ; constitutive_j2_tau_sat = 0.0_pReal
allocate(constitutive_j2_w0(maxNinstance)) ; constitutive_j2_w0 = 0.0_pReal allocate(constitutive_j2_w0(maxNinstance)) ; constitutive_j2_w0 = 0.0_pReal
rewind(file) rewind(file)
@ -120,16 +120,16 @@ subroutine constitutive_j2_init(file)
constitutive_j2_C11(i) = IO_floatValue(line,positions,2) constitutive_j2_C11(i) = IO_floatValue(line,positions,2)
case ('c12') case ('c12')
constitutive_j2_C12(i) = IO_floatValue(line,positions,2) constitutive_j2_C12(i) = IO_floatValue(line,positions,2)
case ('s0') case ('tau0')
constitutive_j2_s0(i) = IO_floatValue(line,positions,2) constitutive_j2_tau0(i) = IO_floatValue(line,positions,2)
case ('gdot0') case ('gdot0')
constitutive_j2_gdot0(i) = IO_floatValue(line,positions,2) constitutive_j2_gdot0(i) = IO_floatValue(line,positions,2)
case ('n') case ('n')
constitutive_j2_n(i) = IO_floatValue(line,positions,2) constitutive_j2_n(i) = IO_floatValue(line,positions,2)
case ('h0') case ('h0')
constitutive_j2_h0(i) = IO_floatValue(line,positions,2) constitutive_j2_h0(i) = IO_floatValue(line,positions,2)
case ('s_sat') case ('tau_sat')
constitutive_j2_s_sat(i) = IO_floatValue(line,positions,2) constitutive_j2_tau_sat(i) = IO_floatValue(line,positions,2)
case ('w0') case ('w0')
constitutive_j2_w0(i) = IO_floatValue(line,positions,2) constitutive_j2_w0(i) = IO_floatValue(line,positions,2)
case ('taylorfactor') case ('taylorfactor')
@ -139,11 +139,11 @@ subroutine constitutive_j2_init(file)
enddo enddo
100 do i = 1,maxNinstance ! sanity checks 100 do i = 1,maxNinstance ! sanity checks
if (constitutive_j2_s0(i) < 0.0_pReal) call IO_error(203) if (constitutive_j2_tau0(i) < 0.0_pReal) call IO_error(203)
if (constitutive_j2_gdot0(i) <= 0.0_pReal) call IO_error(204) if (constitutive_j2_gdot0(i) <= 0.0_pReal) call IO_error(204)
if (constitutive_j2_n(i) <= 0.0_pReal) call IO_error(205) if (constitutive_j2_n(i) <= 0.0_pReal) call IO_error(205)
if (constitutive_j2_h0(i) <= 0.0_pReal) call IO_error(206) if (constitutive_j2_h0(i) <= 0.0_pReal) call IO_error(206)
if (constitutive_j2_s_sat(i) <= 0.0_pReal) call IO_error(207) if (constitutive_j2_tau_sat(i) <= 0.0_pReal) call IO_error(207)
if (constitutive_j2_w0(i) <= 0.0_pReal) call IO_error(208) if (constitutive_j2_w0(i) <= 0.0_pReal) call IO_error(208)
if (constitutive_j2_fTaylor(i) <= 0.0_pReal) call IO_error(240) if (constitutive_j2_fTaylor(i) <= 0.0_pReal) call IO_error(240)
enddo enddo
@ -179,20 +179,31 @@ subroutine constitutive_j2_init(file)
endsubroutine endsubroutine
function constitutive_j2_stateInit(myInstance)
!********************************************************************* !*********************************************************************
!* initial microstructural state * !* initial microstructural state *
!********************************************************************* !*********************************************************************
use prec, only: pReal,pInt pure function constitutive_j2_stateInit(myInstance)
implicit none
!*** variables and functions from other modules ***!
use prec, only: pReal,pInt
implicit none
!*** input variables ***!
integer(pInt), intent(in) :: myInstance
!*** output variables ***!
real(pReal), dimension(1) :: constitutive_j2_stateInit
!*** local variables ***!
!*** global variables ***!
! constitutive_j2_tau0
!* Definition of variables
integer(pInt), intent(in) :: myInstance constitutive_j2_stateInit = constitutive_j2_tau0(myInstance)
real(pReal), dimension(1) :: constitutive_j2_stateInit
constitutive_j2_stateInit = constitutive_j2_s0(myInstance) return
return
endfunction endfunction
@ -248,156 +259,233 @@ subroutine constitutive_j2_microstructure(Temperature,state,ipc,ip,el)
endsubroutine endsubroutine
subroutine constitutive_j2_LpAndItsTangent(Lp,dLp_dTstar,Tstar_v,Temperature,state,ipc,ip,el) !****************************************************************
!********************************************************************* !* calculates plastic velocity gradient and its tangent *
!* plastic velocity gradient and its tangent * !****************************************************************
!* INPUT: * pure subroutine constitutive_j2_LpAndItsTangent(Lp, dLp_dTstar_99, Tstar_dev_v, Temperature, state, g, ip, el)
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
!* - ipc : component-ID at current integration point *
!* - ip : current integration point *
!* - el : current element *
!* OUTPUT: *
!* - Lp : plastic velocity gradient *
!* - dLp_dTstar : derivative of Lp (4th-rank tensor) *
!*********************************************************************
use prec, only: pReal,pInt,p_vec
use math, only: math_mul6x6,math_Mandel6to33,math_Plain3333to99
use lattice, only: lattice_Sslip,lattice_Sslip_v
use mesh, only: mesh_NcpElems,mesh_maxNips
use material, only: homogenization_maxNgrains,material_phase, phase_constitutionInstance
implicit none !*** variables and functions from other modules ***!
use prec, only: pReal, &
pInt, &
p_vec
use math, only: math_mul6x6, &
math_Mandel6to33, &
math_Plain3333to99, &
math_spectral1
use lattice, only: lattice_Sslip, &
lattice_Sslip_v
use mesh, only: mesh_NcpElems, &
mesh_maxNips
use material, only: homogenization_maxNgrains, &
material_phase, &
phase_constitutionInstance
!* Definition of variables implicit none
integer(pInt) ipc,ip,el
integer(pInt) matID,i,k,l,m,n !*** input variables ***!
real(pReal) Temperature real(pReal), dimension(6), intent(in):: Tstar_dev_v ! deviatoric part of the 2nd Piola Kirchhoff stress tensor in Mandel notation
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems) :: state real(pReal), intent(in):: Temperature
real(pReal), dimension(6) :: Tstar_v integer(pInt), intent(in):: g, & ! grain number
real(pReal), dimension(3,3) :: Tstar33 ip, & ! integration point number
real(pReal), dimension(3,3) :: Lp el ! element number
real(pReal), dimension(3,3,3,3) :: dLp_dTstar3333 type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems), intent(in):: state ! state of the current microstructure
real(pReal), dimension(9,9) :: dLp_dTstar
real(pReal) norm_Tstar, squarenorm_Tstar, factor !*** output variables ***!
real(pReal), dimension(3,3), intent(out) :: Lp ! plastic velocity gradient
real(pReal), dimension(9,9), intent(out) :: dLp_dTstar_99 ! derivative of Lp with respect to Tstar (9x9 matrix)
!*** local variables ***!
real(pReal), dimension(3,3) :: Tstar_dev_33 ! deviatoric part of the 2nd Piola Kirchhoff stress tensor as 2nd order tensor
real(pReal), dimension(3,3,3,3) :: dLp_dTstar_3333 ! derivative of Lp with respect to Tstar as 4th order tensor
real(pReal) gamma_dot, & ! strainrate
norm_Tstar_dev, & ! euclidean norm of Tstar_dev
squarenorm_Tstar_dev ! square of the euclidean norm of Tstar_dev
integer(pInt) matID, &
k, &
l, &
m, &
n
!*** global variables ***!
! constitutive_j2_gdot0
! constitutive_j2_fTaylor
! constitutive_j2_n
matID = phase_constitutionInstance(material_phase(ipc,ip,el)) matID = phase_constitutionInstance(material_phase(g,ip,el))
Tstar33 = math_Mandel6to33(Tstar_v) ! convert Tstar to matrix and calculate euclidean norm
squarenorm_Tstar = math_mul6x6(Tstar_v,Tstar_v) Tstar_dev_33 = math_Mandel6to33(Tstar_dev_v)
norm_Tstar = dsqrt(squarenorm_Tstar) squarenorm_Tstar_dev = math_mul6x6(Tstar_dev_v,Tstar_dev_v)
norm_Tstar_dev = dsqrt(squarenorm_Tstar_dev)
!* Initialization of Lp and dLp_dTstar ! Initialization of Lp and dLp_dTstar
Lp = 0.0_pReal Lp = 0.0_pReal
dLp_dTstar = 0.0_pReal dLp_dTstar_99 = 0.0_pReal
!* for Tstar==0 both Lp and dLp_dTstar are zero (if not n==1) ! for Tstar==0 both Lp and dLp_dTstar are zero (if not n==1)
if (norm_Tstar > 0) then if (norm_Tstar_dev > 0) then
!* Calculation of Lp
Lp = dsqrt(1.5_pReal)*Tstar33/norm_Tstar*constitutive_j2_gdot0(matID)/constitutive_j2_fTaylor(matID)* & ! Calculation of gamma_dot
(dsqrt(1.5_pReal)/constitutive_j2_fTaylor(matID)*norm_Tstar/state(ipc,ip,el)%p(1))**constitutive_j2_n(matID) gamma_dot = constitutive_j2_gdot0(matID) * ( dsqrt(1.5_pReal) * norm_Tstar_dev &
/ &!---------------------------------------------------
(constitutive_j2_fTaylor(matID) * state(g,ip,el)%p(1)) ) **constitutive_j2_n(matID)
!* Calculation of the tangent of Lp ! Calculation of Lp
factor = dsqrt(1.5_pReal)*constitutive_j2_gdot0(matID)/constitutive_j2_fTaylor(matID)* & Lp = Tstar_dev_33/norm_Tstar_dev * gamma_dot/constitutive_j2_fTaylor(matID)
(dsqrt(1.5_pReal)/constitutive_j2_fTaylor(matID)/state(ipc,ip,el)%p(1))**constitutive_j2_n(matID) * &
norm_Tstar**(constitutive_j2_n(matID)-1.0_pReal) !* Calculation of the tangent of Lp
dLp_dTstar3333 = 0.0_pReal forall (k=1:3,l=1:3,m=1:3,n=1:3) &
forall (k=1:3,l=1:3,m=1:3,n=1:3) & dLp_dTstar_3333(k,l,m,n) = (constitutive_j2_n(matID)-1.0_pReal) * Tstar_dev_33(k,l)*Tstar_dev_33(m,n) / squarenorm_Tstar_dev
dLp_dTstar3333(k,l,m,n) = Tstar33(k,l)*Tstar33(m,n) * (constitutive_j2_n(matID)-1.0_pReal)/squarenorm_Tstar forall (k=1:3,l=1:3) &
forall (k=1:3,l=1:3) & dLp_dTstar_3333(k,l,k,l) = dLp_dTstar_3333(k,l,k,l) + 1.0_pReal
dLp_dTstar3333(k,l,k,l) = dLp_dTstar3333(k,l,k,l) + 1.0_pReal dLp_dTstar_99 = math_Plain3333to99(gamma_dot / constitutive_j2_fTaylor(matID) * dLp_dTstar_3333 / norm_Tstar_dev)
dLp_dTstar = math_Plain3333to99(factor * dLp_dTstar3333) end if
end if
return
return
endsubroutine endsubroutine
function constitutive_j2_dotState(Tstar_v,Temperature,state,ipc,ip,el) !****************************************************************
!********************************************************************* !* calculates the rate of change of microstructure *
!* rate of change of microstructure * !****************************************************************
!* INPUT: * pure function constitutive_j2_dotState(Tstar_v, Temperature, state, g, ip, el)
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
!* - ipc : component-ID at current integration point *
!* - ip : current integration point *
!* - el : current element *
!* OUTPUT: *
!* - constitutive_dotState : evolution of state variable *
!*********************************************************************
use prec, only: pReal,pInt,p_vec
use math, only: math_mul6x6
use lattice, only: lattice_Sslip_v
use mesh, only: mesh_NcpElems,mesh_maxNips
use material, only: homogenization_maxNgrains,material_phase, phase_constitutionInstance
implicit none
!* Definition of variables !*** variables and functions from other modules ***!
integer(pInt) ipc,ip,el use prec, only: pReal, &
integer(pInt) matID pInt, &
real(pReal) Temperature p_vec
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems) :: state use math, only: math_mul6x6
real(pReal), dimension(6) :: Tstar_v use lattice, only: lattice_Sslip_v
real(pReal), dimension(1) :: constitutive_j2_dotState use mesh, only: mesh_NcpElems, &
real(pReal) norm_Tstar mesh_maxNips
use material, only: homogenization_maxNgrains, &
material_phase, &
phase_constitutionInstance
implicit none
matID = phase_constitutionInstance(material_phase(ipc,ip,el)) !*** input variables ***!
real(pReal), dimension(6), intent(in) :: Tstar_v ! 2nd Piola Kirchhoff stress tensor in Mandel notation
real(pReal), intent(in) :: Temperature
integer(pInt), intent(in):: g, & ! grain number
ip, & ! integration point number
el ! element number
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems), intent(in) :: state ! state of the current microstructure
!*** output variables ***!
real(pReal), dimension(1) :: constitutive_j2_dotState ! evolution of state variable
!*** local variables ***!
real(pReal), dimension(6) :: Tstar_dev_v ! deviatoric part of the 2nd Piola Kirchhoff stress tensor in Mandel notation
real(pReal) gamma_dot, & ! strainrate
hardening, & ! hardening coefficient
norm_Tstar_dev ! euclidean norm of Tstar_dev
integer(pInt) matID
norm_Tstar = dsqrt(math_mul6x6(Tstar_v,Tstar_v)) !*** global variables ***!
constitutive_j2_dotState = constitutive_j2_h0(matID)*(1.0_pReal-state(ipc,ip,el)%p(1)/constitutive_j2_s_sat(matID))** & ! constitutive_j2_gdot0
constitutive_j2_w0(matID) * & ! constitutive_j2_fTaylor
constitutive_j2_gdot0(matID)/constitutive_j2_fTaylor(matID)* & ! constitutive_j2_n
(dsqrt(1.5_pReal)/constitutive_j2_fTaylor(matID)*norm_Tstar/state(ipc,ip,el)%p(1))** & ! constitutive_j2_h0
constitutive_j2_n(matID) ! constitutive_j2_tau_sat
! constitutive_j2_w0
matID = phase_constitutionInstance(material_phase(g,ip,el))
return ! caclulate deviatoric part of 2nd Piola-Kirchhoff stress
Tstar_dev_v(1:3) = Tstar_v(1:3) - sum(Tstar_v(1:3))/3_pReal
Tstar_dev_v(4:6) = Tstar_v(4:6)
norm_Tstar_dev = dsqrt(math_mul6x6(Tstar_dev_v,Tstar_dev_v))
! Calculation of gamma_dot
gamma_dot = constitutive_j2_gdot0(matID) * ( dsqrt(1.5_pReal) * norm_Tstar_dev &
/ &!---------------------------------------------------
(constitutive_j2_fTaylor(matID) * state(g,ip,el)%p(1)) ) ** constitutive_j2_n(matID)
! calculate hardening coefficient
hardening = constitutive_j2_h0(matID) * &
( 1.0_pReal - state(g,ip,el)%p(1) / constitutive_j2_tau_sat(matID) ) ** constitutive_j2_w0(matID)
! finally calculate dotState
constitutive_j2_dotState = hardening * gamma_dot
return
endfunction endfunction
pure function constitutive_j2_postResults(Tstar_v,Temperature,dt,state,ipc,ip,el)
!********************************************************************* !*********************************************************************
!* return array of constitutive results * !* return array of constitutive results *
!* INPUT: *
!* - Tstar_v : 2nd Piola Kirchhoff stress tensor (Mandel) *
!* - dt : current time increment *
!* - ipc : component-ID at current integration point *
!* - ip : current integration point *
!* - el : current element *
!********************************************************************* !*********************************************************************
use prec, only: pReal,pInt,p_vec pure function constitutive_j2_postResults(Tstar_v, Temperature, dt, state, g, ip, el)
use math, only: math_mul6x6
use lattice, only: lattice_Sslip_v
use mesh, only: mesh_NcpElems,mesh_maxNips
use material, only: homogenization_maxNgrains,material_phase,phase_constitutionInstance,phase_Noutput
implicit none
!* Definition of variables !*** variables and functions from other modules ***!
integer(pInt), intent(in) :: ipc,ip,el use prec, only: pReal, &
real(pReal), intent(in) :: dt,Temperature pInt, &
real(pReal), dimension(6), intent(in) :: Tstar_v p_vec
type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems), intent(in) :: state use math, only: math_mul6x6
integer(pInt) matID,o,i,c,n use lattice, only: lattice_Sslip_v
real(pReal) norm_Tstar use mesh, only: mesh_NcpElems, &
real(pReal), dimension(constitutive_j2_sizePostResults(phase_constitutionInstance(material_phase(ipc,ip,el)))) :: & mesh_maxNips
constitutive_j2_postResults use material, only: homogenization_maxNgrains, &
material_phase, &
phase_constitutionInstance, &
phase_Noutput
matID = phase_constitutionInstance(material_phase(ipc,ip,el)) implicit none
norm_Tstar = dsqrt(math_mul6x6(Tstar_v,Tstar_v))
c = 0_pInt
constitutive_j2_postResults = 0.0_pReal
do o = 1,phase_Noutput(material_phase(ipc,ip,el)) !*** input variables ***!
select case(constitutive_j2_output(o,matID)) real(pReal), dimension(6), intent(in):: Tstar_v ! 2nd Piola Kirchhoff stress tensor in Mandel notation
case ('flowstress') real(pReal), intent(in):: Temperature, &
constitutive_j2_postResults(c+1) = state(ipc,ip,el)%p(1) dt ! current time increment
c = c + 1 integer(pInt), intent(in):: g, & ! grain number
case ('strainrate') ip, & ! integration point number
constitutive_j2_postResults(c+1) = constitutive_j2_gdot0(matID)/constitutive_j2_fTaylor(matID)* & el ! element number
(dsqrt(1.5_pReal)/constitutive_j2_fTaylor(matID)*norm_Tstar/state(ipc,ip,el)%p(1))** & type(p_vec), dimension(homogenization_maxNgrains,mesh_maxNips,mesh_NcpElems), intent(in) :: state ! state of the current microstructure
constitutive_j2_n(matID)
c = c + 1 !*** output variables ***!
end select real(pReal), dimension(constitutive_j2_sizePostResults(phase_constitutionInstance(material_phase(g,ip,el)))) :: &
enddo constitutive_j2_postResults
!*** local variables ***!
real(pReal), dimension(6) :: Tstar_dev_v ! deviatoric part of the 2nd Piola Kirchhoff stress tensor in Mandel notation
real(pReal) norm_Tstar_dev ! euclidean norm of Tstar_dev
integer(pInt) matID, &
o, &
c
!*** global variables ***!
! constitutive_j2_gdot0
! constitutive_j2_fTaylor
! constitutive_j2_n
matID = phase_constitutionInstance(material_phase(g,ip,el))
! calculate deviatoric part of 2nd Piola-Kirchhoff stress and its norm
Tstar_dev_v(1:3) = Tstar_v(1:3) - sum(Tstar_v(1:3))/3_pReal
Tstar_dev_v(4:6) = Tstar_v(4:6)
norm_Tstar_dev = dsqrt(math_mul6x6(Tstar_dev_v,Tstar_dev_v))
c = 0_pInt
constitutive_j2_postResults = 0.0_pReal
do o = 1,phase_Noutput(material_phase(g,ip,el))
select case(constitutive_j2_output(o,matID))
case ('flowstress')
constitutive_j2_postResults(c+1) = state(g,ip,el)%p(1)
c = c + 1
case ('strainrate')
constitutive_j2_postResults(c+1) = &
constitutive_j2_gdot0(matID) * ( dsqrt(1.5_pReal) * norm_Tstar_dev &
/ &!---------------------------------------------------
(constitutive_j2_fTaylor(matID) * state(g,ip,el)%p(1)) ) ** constitutive_j2_n(matID)
c = c + 1
end select
enddo
return return

View File

@ -41,11 +41,11 @@ c12 58.34e9
(output) flowstress (output) flowstress
(output) strainrate (output) strainrate
taylorfactor 3 taylorfactor 3
s0 31e6 tau0 31e6
gdot0 0.001 gdot0 0.001
n 20 n 20
h0 75e6 h0 75e6
s_sat 63e6 tau_sat 63e6
w0 2.25 w0 2.25
constitution phenomenological constitution phenomenological