DAMASK_EICMD/src/phase_mechanical_eigen_clea...

155 lines
6.8 KiB
Fortran
Raw Normal View History

!--------------------------------------------------------------------------------------------------
!> @author Luv Sharma, Max-Planck-Institut für Eisenforschung GmbH
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
!> @brief material subroutine incorporating kinematics resulting from opening of cleavage planes
!> @details to be done
!--------------------------------------------------------------------------------------------------
submodule(phase:eigendeformation) cleavageopening
type :: tParameters !< container type for internal constitutive parameters
integer :: &
2020-08-15 19:32:10 +05:30
sum_N_cl !< total number of cleavage planes
real(pReal) :: &
2020-09-23 04:46:12 +05:30
dot_o, & !< opening rate of cleavage planes
q !< damage rate sensitivity
real(pReal), dimension(:), allocatable :: &
2020-09-23 04:46:12 +05:30
g_crit
real(pReal), dimension(:,:,:,:), allocatable :: &
cleavage_systems
end type tParameters
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters
contains
!--------------------------------------------------------------------------------------------------
!> @brief module initialization
!> @details reads in material parameters, allocates arrays, and does sanity checks
!--------------------------------------------------------------------------------------------------
2021-02-13 23:11:30 +05:30
module function kinematics_cleavage_opening_init() result(myKinematics)
2021-02-13 23:11:30 +05:30
logical, dimension(:), allocatable :: myKinematics
2021-02-13 23:11:30 +05:30
integer :: p
2020-03-17 04:01:43 +05:30
integer, dimension(:), allocatable :: N_cl !< active number of cleavage systems per family
2020-02-29 14:50:38 +05:30
character(len=pStringLen) :: extmsg = ''
2020-08-15 19:32:10 +05:30
class(tNode), pointer :: &
phases, &
phase, &
kinematics, &
kinematic_type
2021-02-13 23:11:30 +05:30
myKinematics = kinematics_active2('anisobrittle')
if(count(myKinematics) == 0) return
2021-01-27 15:14:03 +05:30
print'(/,a)', ' <<<+- phase:mechanics:eigendeformation:cleavageopening init -+>>>'
2021-02-13 23:11:30 +05:30
print'(a,i2)', ' # phases: ',count(myKinematics); flush(IO_STDOUT)
2020-08-15 19:32:10 +05:30
2020-02-28 14:34:38 +05:30
phases => config_material%get('phase')
allocate(param(phases%length))
2020-08-15 19:32:10 +05:30
do p = 1, phases%length
2021-02-13 23:11:30 +05:30
if(myKinematics(p)) then
phase => phases%get(p)
kinematics => phase%get('damage')
associate(prm => param(p))
kinematic_type => kinematics%get(1)
2020-02-28 14:55:07 +05:30
2020-08-15 19:32:10 +05:30
N_cl = kinematic_type%get_asInts('N_cl')
prm%sum_N_cl = sum(abs(N_cl))
2020-02-28 14:55:07 +05:30
2020-09-23 04:46:12 +05:30
prm%q = kinematic_type%get_asFloat('q')
prm%dot_o = kinematic_type%get_asFloat('dot_o')
2020-02-29 02:14:40 +05:30
2020-09-23 04:46:12 +05:30
prm%g_crit = kinematic_type%get_asFloats('g_crit',requiredSize=size(N_cl))
2020-08-15 19:32:10 +05:30
prm%cleavage_systems = lattice_SchmidMatrix_cleavage(N_cl,phase%get_asString('lattice'),&
phase%get_asFloat('c/a',defaultVal=0.0_pReal))
2020-02-29 02:14:40 +05:30
2020-08-15 19:32:10 +05:30
! expand: family => system
2020-09-23 04:46:12 +05:30
prm%g_crit = math_expand(prm%g_crit,N_cl)
2020-08-15 19:32:10 +05:30
! sanity checks
2020-09-23 04:46:12 +05:30
if (prm%q <= 0.0_pReal) extmsg = trim(extmsg)//' q'
if (prm%dot_o <= 0.0_pReal) extmsg = trim(extmsg)//' dot_o'
if (any(prm%g_crit < 0.0_pReal)) extmsg = trim(extmsg)//' g_crit'
2020-02-29 02:14:40 +05:30
2020-02-29 14:50:38 +05:30
!--------------------------------------------------------------------------------------------------
! exit if any parameter is out of range
2020-08-15 19:32:10 +05:30
if (extmsg /= '') call IO_error(211,ext_msg=trim(extmsg)//'(cleavage_opening)')
2021-02-13 23:11:30 +05:30
end associate
endif
enddo
2020-02-28 14:34:38 +05:30
2020-08-15 19:32:10 +05:30
end function kinematics_cleavage_opening_init
2020-02-28 14:34:38 +05:30
2020-02-29 14:50:38 +05:30
!--------------------------------------------------------------------------------------------------
2020-02-28 14:34:38 +05:30
!> @brief contains the constitutive equation for calculating the velocity gradient
!--------------------------------------------------------------------------------------------------
2021-02-13 11:45:57 +05:30
module subroutine kinematics_cleavage_opening_LiAndItsTangent(Ld, dLd_dTstar, S, ph,me)
2020-02-28 14:34:38 +05:30
integer, intent(in) :: &
2021-02-13 11:45:57 +05:30
ph,me
real(pReal), intent(in), dimension(3,3) :: &
S
real(pReal), intent(out), dimension(3,3) :: &
Ld !< damage velocity gradient
real(pReal), intent(out), dimension(3,3,3,3) :: &
dLd_dTstar !< derivative of Ld with respect to Tstar (4th-order tensor)
2020-02-29 19:04:19 +05:30
integer :: &
2020-02-29 02:14:40 +05:30
i, k, l, m, n
real(pReal) :: &
traction_d, traction_t, traction_n, traction_crit, &
udotd, dudotd_dt, udott, dudott_dt, udotn, dudotn_dt
2020-02-28 14:34:38 +05:30
Ld = 0.0_pReal
dLd_dTstar = 0.0_pReal
2021-02-13 11:45:57 +05:30
associate(prm => param(ph))
2020-03-17 04:01:43 +05:30
do i = 1,prm%sum_N_cl
2021-02-13 11:45:57 +05:30
traction_crit = prm%g_crit(i)*damage_phi(ph,me)**2.0_pReal
2020-02-29 14:57:22 +05:30
2020-03-16 23:13:04 +05:30
traction_d = math_tensordot(S,prm%cleavage_systems(1:3,1:3,1,i))
2020-03-01 14:04:33 +05:30
if (abs(traction_d) > traction_crit + tol_math_check) then
2020-09-23 04:46:12 +05:30
udotd = sign(1.0_pReal,traction_d)* prm%dot_o * ((abs(traction_d) - traction_crit)/traction_crit)**prm%q
2020-02-29 14:50:38 +05:30
Ld = Ld + udotd*prm%cleavage_systems(1:3,1:3,1,i)
2020-09-23 04:46:12 +05:30
dudotd_dt = sign(1.0_pReal,traction_d)*udotd*prm%q / (abs(traction_d) - traction_crit)
2020-02-29 14:50:38 +05:30
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
2020-02-29 14:57:22 +05:30
dLd_dTstar(k,l,m,n) = dLd_dTstar(k,l,m,n) &
+ dudotd_dt*prm%cleavage_systems(k,l,1,i) * prm%cleavage_systems(m,n,1,i)
2020-02-29 14:50:38 +05:30
endif
2020-03-16 23:13:04 +05:30
traction_t = math_tensordot(S,prm%cleavage_systems(1:3,1:3,2,i))
2020-03-01 14:04:33 +05:30
if (abs(traction_t) > traction_crit + tol_math_check) then
2020-09-23 04:46:12 +05:30
udott = sign(1.0_pReal,traction_t)* prm%dot_o * ((abs(traction_t) - traction_crit)/traction_crit)**prm%q
2020-02-29 14:50:38 +05:30
Ld = Ld + udott*prm%cleavage_systems(1:3,1:3,2,i)
2020-09-23 04:46:12 +05:30
dudott_dt = sign(1.0_pReal,traction_t)*udott*prm%q / (abs(traction_t) - traction_crit)
2020-02-29 14:50:38 +05:30
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
2020-02-29 14:57:22 +05:30
dLd_dTstar(k,l,m,n) = dLd_dTstar(k,l,m,n) &
+ dudott_dt*prm%cleavage_systems(k,l,2,i) * prm%cleavage_systems(m,n,2,i)
2020-02-29 14:50:38 +05:30
endif
2020-03-16 23:13:04 +05:30
traction_n = math_tensordot(S,prm%cleavage_systems(1:3,1:3,3,i))
2020-03-01 14:04:33 +05:30
if (abs(traction_n) > traction_crit + tol_math_check) then
2020-09-23 04:46:12 +05:30
udotn = sign(1.0_pReal,traction_n)* prm%dot_o * ((abs(traction_n) - traction_crit)/traction_crit)**prm%q
2020-02-29 14:50:38 +05:30
Ld = Ld + udotn*prm%cleavage_systems(1:3,1:3,3,i)
2020-09-23 04:46:12 +05:30
dudotn_dt = sign(1.0_pReal,traction_n)*udotn*prm%q / (abs(traction_n) - traction_crit)
2020-02-29 14:50:38 +05:30
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
2020-02-29 14:57:22 +05:30
dLd_dTstar(k,l,m,n) = dLd_dTstar(k,l,m,n) &
+ dudotn_dt*prm%cleavage_systems(k,l,3,i) * prm%cleavage_systems(m,n,3,i)
2020-02-29 14:50:38 +05:30
endif
enddo
2020-02-29 14:50:38 +05:30
end associate
2020-02-28 14:34:38 +05:30
end subroutine kinematics_cleavage_opening_LiAndItsTangent
2021-01-27 01:13:30 +05:30
end submodule cleavageopening