2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @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-01-27 01:22:48 +05:30
|
|
|
submodule(phase:eigendeformation) slipplaneopening
|
2020-02-28 14:55:07 +05:30
|
|
|
|
2019-06-16 00:02:53 +05:30
|
|
|
integer, dimension(:), allocatable :: kinematics_slipplane_opening_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
|
2020-03-01 13:36:03 +05:30
|
|
|
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
|
|
|
|
2020-10-28 02:03:30 +05:30
|
|
|
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstances)
|
2020-02-28 14:55:07 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-08-15 19:32:10 +05:30
|
|
|
module function kinematics_slipplane_opening_init(kinematics_length) result(myKinematics)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2021-01-26 01:01:12 +05:30
|
|
|
integer, intent(in) :: kinematics_length
|
2020-08-15 19:32:10 +05:30
|
|
|
logical, dimension(:,:), allocatable :: myKinematics
|
|
|
|
|
2020-10-28 02:03:30 +05:30
|
|
|
integer :: Ninstances,p,i,k
|
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
|
2020-03-01 13:36:03 +05:30
|
|
|
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, &
|
2021-01-26 01:01:12 +05:30
|
|
|
kinematic_type
|
|
|
|
|
2021-01-27 15:14:03 +05:30
|
|
|
print'(/,a)', ' <<<+- phase:mechanics:eigendeformation:slipplaneopening init -+>>>'
|
2020-08-15 19:32:10 +05:30
|
|
|
|
2021-02-13 03:11:35 +05:30
|
|
|
myKinematics = kinematics_active2('isoductile',kinematics_length)
|
2020-10-28 02:03:30 +05:30
|
|
|
Ninstances = count(myKinematics)
|
|
|
|
print'(a,i2)', ' # instances: ',Ninstances; flush(IO_STDOUT)
|
|
|
|
if(Ninstances == 0) return
|
2020-02-28 14:55:07 +05:30
|
|
|
|
2020-09-13 14:09:17 +05:30
|
|
|
phases => config_material%get('phase')
|
2021-02-13 11:29:18 +05:30
|
|
|
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
|
2020-11-03 16:21:57 +05:30
|
|
|
phase => phases%get(p)
|
2020-11-18 01:54:40 +05:30
|
|
|
mech => phase%get('mechanics')
|
2020-11-03 16:21:57 +05:30
|
|
|
pl => mech%get('plasticity')
|
2020-08-15 19:32:10 +05:30
|
|
|
if(count(myKinematics(:,p)) == 0) cycle
|
2021-02-13 03:11:35 +05:30
|
|
|
kinematics => phase%get('damage')
|
2020-08-15 19:32:10 +05:30
|
|
|
do k = 1, kinematics%length
|
|
|
|
if(myKinematics(k,p)) then
|
2021-02-13 11:29:18 +05:30
|
|
|
associate(prm => param(p))
|
2021-01-26 01:01:12 +05:30
|
|
|
kinematic_type => kinematics%get(k)
|
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')
|
2020-08-15 19:32:10 +05:30
|
|
|
N_sl = pl%get_asInts('N_sl')
|
|
|
|
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
|
|
|
|
|
2020-09-23 04:46:12 +05:30
|
|
|
prm%g_crit = kinematic_type%get_asFloats('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
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
end associate
|
|
|
|
endif
|
|
|
|
enddo
|
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
|
|
|
|
|
|
|
end function kinematics_slipplane_opening_init
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-02-28 14:55:07 +05:30
|
|
|
!> @brief contains the constitutive equation for calculating the velocity gradient
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-12-23 11:37:18 +05:30
|
|
|
module subroutine kinematics_slipplane_opening_LiAndItsTangent(Ld, dLd_dTstar, S, co, ip, el)
|
2019-03-09 17:20:05 +05:30
|
|
|
|
2019-06-16 00:02:53 +05:30
|
|
|
integer, intent(in) :: &
|
2020-12-23 11:37:18 +05:30
|
|
|
co, & !< grain number
|
2019-06-16 00:02:53 +05:30
|
|
|
ip, & !< integration point number
|
|
|
|
el !< element number
|
|
|
|
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:29:18 +05:30
|
|
|
associate(prm => param(material_phaseAt(co,el)))
|
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
|
|
|
|
2020-03-10 18:32:09 +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-12 14:01:02 +05:30
|
|
|
traction_crit = prm%g_crit(i)* phase_damage_get_phi(co,ip,el) ! degrading critical load carrying capacity by damage
|
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
|
|
|
|
2020-01-10 05:59:35 +05:30
|
|
|
forall (k=1:3,l=1:3,m=1:3,n=1:3) &
|
2020-03-01 13:36:03 +05:30
|
|
|
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
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
end subroutine kinematics_slipplane_opening_LiAndItsTangent
|
|
|
|
|
2021-01-27 01:13:30 +05:30
|
|
|
end submodule slipplaneopening
|