name change to reflect State and Stress (was outer,inner)
added nReg for Jacobi regularization attempts
This commit is contained in:
parent
4743c1cd86
commit
9da4b4cf24
|
@ -11,19 +11,19 @@
|
|||
! *** How frequently the jacobian is recalculated ***
|
||||
integer (pInt), parameter :: ijaco = 5_pInt
|
||||
! *** Maximum number of internal cutbacks in time step ***
|
||||
integer(pInt), parameter :: ncut=7_pInt
|
||||
integer(pInt), parameter :: nCutback = 7_pInt
|
||||
! *** Maximum number of regularization attempts for Jacobi inversion ***
|
||||
integer(pInt), parameter :: nreg=1_pInt
|
||||
integer(pInt), parameter :: nReg = 1_pInt
|
||||
! *** Perturbation of strain array for numerical calculation of FEM Jacobi matrix ***
|
||||
real(pReal), parameter :: pert_e=1.0e-5_pReal
|
||||
! *** Maximum number of iterations in outer (state variables) loop ***
|
||||
integer(pInt), parameter :: nouter = 50_pInt
|
||||
integer(pInt), parameter :: nState = 50_pInt
|
||||
! *** Convergence criteria for outer (state variables) loop ***
|
||||
real(pReal), parameter :: tol_outer = 1.0e-4_pReal
|
||||
real(pReal), parameter :: tol_State = 1.0e-4_pReal
|
||||
! *** Maximum number of iterations in inner (stress) loop ***
|
||||
integer(pInt), parameter :: ninner = 2000_pInt
|
||||
integer(pInt), parameter :: nStress = 2000_pInt
|
||||
! *** Convergence criteria for inner (stress) loop ***
|
||||
real(pReal), parameter :: tol_inner = 1.0e-3_pReal
|
||||
real(pReal), parameter :: tol_Stress = 1.0e-3_pReal
|
||||
! *** Factor for maximum stress correction in inner (stress) loop ***
|
||||
real(pReal), parameter :: crite = 1.0e-1_pReal
|
||||
|
||||
|
|
Loading…
Reference in New Issue