DAMASK_EICMD/src/phase_mechanical_eigen_slip...

185 lines
7.1 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 slip planes
!> @details to be done
!--------------------------------------------------------------------------------------------------
2021-02-13 23:27:41 +05:30
submodule(phase:eigen) slipplaneopening
2020-02-28 14:55:07 +05:30
2021-04-06 15:48:48 +05:30
integer, dimension(:), allocatable :: damage_isoductile_instance
2020-02-28 14:55:07 +05:30
2019-06-16 00:02:53 +05:30
type :: tParameters !< container type for internal constitutive parameters
integer :: &
2020-08-15 19:32:10 +05:30
sum_N_sl !< total number of cleavage planes
2019-06-16 00:02:53 +05:30
real(pReal) :: &
2020-09-23 04:46:12 +05:30
dot_o, & !< opening rate of cleavage planes
q !< damage rate sensitivity
2019-06-16 00:02:53 +05:30
real(pReal), dimension(:), allocatable :: &
2020-09-23 04:46:12 +05:30
g_crit
real(pReal), dimension(:,:,:), allocatable :: &
P_d, &
P_t, &
P_n
2019-06-16 00:02:53 +05:30
end type tParameters
2020-02-28 14:55:07 +05:30
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstances)
2020-02-28 14:55:07 +05:30
contains
!--------------------------------------------------------------------------------------------------
!> @brief module initialization
!> @details reads in material parameters, allocates arrays, and does sanity checks
!--------------------------------------------------------------------------------------------------
2021-04-06 15:48:48 +05:30
module function damage_isoductile_init() result(myKinematics)
2021-02-13 23:11:30 +05:30
logical, dimension(:), allocatable :: myKinematics
2020-08-15 19:32:10 +05:30
2021-02-13 23:11:30 +05:30
integer :: p,i
2020-02-29 14:50:38 +05:30
character(len=pStringLen) :: extmsg = ''
2020-03-17 04:01:43 +05:30
integer, dimension(:), allocatable :: N_sl
real(pReal), dimension(:,:), allocatable :: d,n,t
2020-08-15 19:32:10 +05:30
class(tNode), pointer :: &
phases, &
phase, &
2020-11-03 16:21:57 +05:30
mech, &
2020-08-15 19:32:10 +05:30
pl, &
kinematics, &
kinematic_type
2021-02-13 23:11:30 +05:30
myKinematics = kinematics_active2('isoductile')
if(count(myKinematics) == 0) return
2021-02-13 23:27:41 +05:30
print'(/,a)', ' <<<+- phase:mechanical:eigen:slipplaneopening 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:55:07 +05:30
phases => config_material%get('phase')
allocate(param(phases%length))
2020-02-28 14:55:07 +05:30
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)
2021-03-25 23:52:59 +05:30
mech => phase%get('mechanical')
pl => mech%get('plastic')
2021-02-13 23:11:30 +05:30
kinematics => phase%get('damage')
associate(prm => param(p))
kinematic_type => kinematics%get(1)
2020-08-15 19:32:10 +05:30
2020-09-23 04:46:12 +05:30
prm%dot_o = kinematic_type%get_asFloat('dot_o')
prm%q = kinematic_type%get_asFloat('q')
2021-03-11 22:30:07 +05:30
N_sl = pl%get_as1dInt('N_sl')
2020-08-15 19:32:10 +05:30
prm%sum_N_sl = sum(abs(N_sl))
d = lattice_slip_direction (N_sl,phase%get_asString('lattice'),&
phase%get_asFloat('c/a',defaultVal=0.0_pReal))
t = lattice_slip_transverse(N_sl,phase%get_asString('lattice'),&
phase%get_asFloat('c/a',defaultVal=0.0_pReal))
n = lattice_slip_normal (N_sl,phase%get_asString('lattice'),&
phase%get_asFloat('c/a',defaultVal=0.0_pReal))
allocate(prm%P_d(3,3,size(d,2)),prm%P_t(3,3,size(t,2)),prm%P_n(3,3,size(n,2)))
do i=1, size(n,2)
prm%P_d(1:3,1:3,i) = math_outer(d(1:3,i), n(1:3,i))
prm%P_t(1:3,1:3,i) = math_outer(t(1:3,i), n(1:3,i))
prm%P_n(1:3,1:3,i) = math_outer(n(1:3,i), n(1:3,i))
enddo
2021-03-11 22:30:07 +05:30
prm%g_crit = kinematic_type%get_as1dFloat('g_crit',requiredSize=size(N_sl))
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_sl)
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)//' anisoDuctile_n'
if (prm%dot_o <= 0.0_pReal) extmsg = trim(extmsg)//' anisoDuctile_sdot0'
if (any(prm%g_crit < 0.0_pReal)) extmsg = trim(extmsg)//' anisoDuctile_critLoad'
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)//'(slipplane_opening)')
2020-02-28 14:55:07 +05:30
2021-02-13 23:11:30 +05:30
end associate
endif
2019-06-16 00:02:53 +05:30
enddo
2020-02-28 14:55:07 +05:30
2020-08-15 19:32:10 +05:30
2021-04-06 15:48:48 +05:30
end function damage_isoductile_init
2020-02-29 14:50:38 +05:30
!--------------------------------------------------------------------------------------------------
2020-02-28 14:55:07 +05:30
!> @brief contains the constitutive equation for calculating the velocity gradient
!--------------------------------------------------------------------------------------------------
2021-04-06 15:48:48 +05:30
module subroutine damage_isoductile_LiAndItsTangent(Ld, dLd_dTstar, S, ph,me)
2019-03-09 17:20:05 +05:30
2019-06-16 00:02:53 +05:30
integer, intent(in) :: &
2021-02-13 11:45:57 +05:30
ph, me
2019-06-16 00:02:53 +05:30
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
2019-06-16 00:02:53 +05:30
integer :: &
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:55:07 +05:30
2021-02-13 11:45:57 +05:30
associate(prm => param(ph))
2019-06-16 00:02:53 +05:30
Ld = 0.0_pReal
dLd_dTstar = 0.0_pReal
2020-03-17 04:01:43 +05:30
do i = 1, prm%sum_N_sl
2019-06-16 00:02:53 +05:30
traction_d = math_tensordot(S,prm%P_d(1:3,1:3,i))
traction_t = math_tensordot(S,prm%P_t(1:3,1:3,i))
traction_n = math_tensordot(S,prm%P_n(1:3,1:3,i))
2020-02-28 14:55:07 +05:30
2021-02-13 11:45:57 +05:30
traction_crit = prm%g_crit(i)* damage_phi(ph,me)
2019-06-16 00:02:53 +05:30
2020-09-23 04:46:12 +05:30
udotd = sign(1.0_pReal,traction_d)* prm%dot_o* ( abs(traction_d)/traction_crit &
- abs(traction_d)/prm%g_crit(i))**prm%q
udott = sign(1.0_pReal,traction_t)* prm%dot_o* ( abs(traction_t)/traction_crit &
- abs(traction_t)/prm%g_crit(i))**prm%q
udotn = prm%dot_o* ( max(0.0_pReal,traction_n)/traction_crit &
- max(0.0_pReal,traction_n)/prm%g_crit(i))**prm%q
2020-01-10 06:03:03 +05:30
2020-02-28 14:55:07 +05:30
if (dNeq0(traction_d)) then
2020-09-23 04:46:12 +05:30
dudotd_dt = udotd*prm%q/traction_d
2020-02-28 14:55:07 +05:30
else
dudotd_dt = 0.0_pReal
endif
if (dNeq0(traction_t)) then
2020-09-23 04:46:12 +05:30
dudott_dt = udott*prm%q/traction_t
2020-02-28 14:55:07 +05:30
else
dudott_dt = 0.0_pReal
endif
if (dNeq0(traction_n)) then
2020-09-23 04:46:12 +05:30
dudotn_dt = udotn*prm%q/traction_n
2020-02-28 14:55:07 +05:30
else
dudotn_dt = 0.0_pReal
endif
2020-01-10 06:03:03 +05:30
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
dLd_dTstar(k,l,m,n) = dLd_dTstar(k,l,m,n) &
+ dudotd_dt*prm%P_d(k,l,i)*prm%P_d(m,n,i) &
+ dudott_dt*prm%P_t(k,l,i)*prm%P_t(m,n,i) &
+ dudotn_dt*prm%P_n(k,l,i)*prm%P_n(m,n,i)
Ld = Ld &
+ udotd*prm%P_d(1:3,1:3,i) &
+ udott*prm%P_t(1:3,1:3,i) &
+ udotn*prm%P_n(1:3,1:3,i)
2019-06-16 00:02:53 +05:30
enddo
2020-02-28 14:55:07 +05:30
2019-06-16 00:02:53 +05:30
end associate
2019-03-09 17:20:05 +05:30
2021-04-06 15:48:48 +05:30
end subroutine damage_isoductile_LiAndItsTangent
2021-01-27 01:13:30 +05:30
end submodule slipplaneopening