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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
module kinematics_slipplane_opening
|
|
|
|
use prec, only: &
|
|
|
|
pReal, &
|
|
|
|
pInt
|
|
|
|
|
|
|
|
implicit none
|
|
|
|
private
|
2018-12-31 01:38:48 +05:30
|
|
|
integer(pInt), dimension(:), allocatable, private :: kinematics_slipplane_opening_instance
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
type, private :: tParameters !< container type for internal constitutive parameters
|
|
|
|
integer(pInt) :: &
|
|
|
|
totalNslip
|
|
|
|
integer(pInt), dimension(:), allocatable :: &
|
|
|
|
Nslip !< active number of slip systems per family
|
|
|
|
real(pReal) :: &
|
|
|
|
sdot0, &
|
|
|
|
n
|
|
|
|
real(pReal), dimension(:), allocatable :: &
|
2019-03-09 17:20:05 +05:30
|
|
|
critLoad
|
|
|
|
real(pReal), dimension(:,:), allocatable :: &
|
|
|
|
slip_direction, &
|
|
|
|
slip_normal, &
|
|
|
|
slip_transverse
|
|
|
|
end type tParameters
|
|
|
|
|
|
|
|
type(tParameters), dimension(:), allocatable, private :: param !< containers of constitutive parameters (len Ninstance)
|
2015-05-28 22:32:23 +05:30
|
|
|
public :: &
|
|
|
|
kinematics_slipplane_opening_init, &
|
|
|
|
kinematics_slipplane_opening_LiAndItsTangent
|
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2018-12-31 01:38:48 +05:30
|
|
|
subroutine kinematics_slipplane_opening_init()
|
2015-05-28 22:32:23 +05:30
|
|
|
use debug, only: &
|
|
|
|
debug_level,&
|
|
|
|
debug_constitutive,&
|
|
|
|
debug_levelBasic
|
2018-12-31 01:38:48 +05:30
|
|
|
use config, only: &
|
|
|
|
config_phase
|
2015-05-28 22:32:23 +05:30
|
|
|
use IO, only: &
|
2019-03-09 17:20:05 +05:30
|
|
|
IO_error
|
|
|
|
use math, only: &
|
|
|
|
math_expand
|
2015-05-28 22:32:23 +05:30
|
|
|
use material, only: &
|
|
|
|
phase_kinematics, &
|
|
|
|
KINEMATICS_slipplane_opening_label, &
|
2018-06-10 21:31:52 +05:30
|
|
|
KINEMATICS_slipplane_opening_ID
|
2019-03-09 17:20:05 +05:30
|
|
|
use lattice
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
implicit none
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
integer(pInt) :: maxNinstance,p,instance,kinematics
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2017-11-21 19:38:45 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- kinematics_'//KINEMATICS_slipplane_opening_LABEL//' init -+>>>'
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
maxNinstance = count(phase_kinematics == KINEMATICS_slipplane_opening_ID)
|
|
|
|
if (maxNinstance == 0) return
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0_pInt) &
|
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',maxNinstance
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
allocate(kinematics_slipplane_opening_instance(size(config_phase)), source=0_pInt)
|
|
|
|
do p = 1_pInt, size(config_phase)
|
|
|
|
kinematics_slipplane_opening_instance(p) = count(phase_kinematics(:,1:p) == kinematics_slipplane_opening_ID) ! ToDo: count correct?
|
2015-05-28 22:32:23 +05:30
|
|
|
enddo
|
2019-03-09 17:20:05 +05:30
|
|
|
|
|
|
|
allocate(param(maxNinstance))
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
do p = 1_pInt, size(config_phase)
|
|
|
|
if (all(phase_kinematics(:,p) /= KINEMATICS_slipplane_opening_ID)) cycle
|
2019-03-09 17:20:05 +05:30
|
|
|
associate(prm => param(kinematics_slipplane_opening_instance(p)), &
|
|
|
|
config => config_phase(p))
|
2018-12-31 01:38:48 +05:30
|
|
|
instance = kinematics_slipplane_opening_instance(p)
|
2019-03-09 17:20:05 +05:30
|
|
|
prm%sdot0 = config_phase(p)%getFloat('anisoductile_sdot0')
|
|
|
|
prm%n = config_phase(p)%getFloat('anisoductile_ratesensitivity')
|
|
|
|
|
|
|
|
prm%Nslip = config%getInts('nslip')
|
|
|
|
|
|
|
|
prm%critLoad = config_phase(p)%getFloats('anisoductile_criticalload',requiredSize=size(prm%Nslip ))
|
|
|
|
|
|
|
|
prm%critLoad = math_expand(prm%critLoad, prm%Nslip)
|
|
|
|
|
|
|
|
prm%slip_direction = lattice_slip_direction (prm%Nslip,config%getString('lattice_structure'),&
|
|
|
|
config%getFloat('c/a',defaultVal=0.0_pReal))
|
|
|
|
prm%slip_normal = lattice_slip_normal (prm%Nslip,config%getString('lattice_structure'),&
|
|
|
|
config%getFloat('c/a',defaultVal=0.0_pReal))
|
|
|
|
prm%slip_transverse = lattice_slip_transverse(prm%Nslip,config%getString('lattice_structure'),&
|
|
|
|
config%getFloat('c/a',defaultVal=0.0_pReal))
|
|
|
|
|
|
|
|
! if (kinematics_slipplane_opening_sdot_0(instance) <= 0.0_pReal) &
|
|
|
|
! call IO_error(211_pInt,el=instance,ext_msg='sdot_0 ('//KINEMATICS_slipplane_opening_LABEL//')')
|
|
|
|
! if (any(kinematics_slipplane_opening_critPlasticStrain(:,instance) < 0.0_pReal)) &
|
|
|
|
! call IO_error(211_pInt,el=instance,ext_msg='criticaPlasticStrain ('//KINEMATICS_slipplane_opening_LABEL//')')
|
|
|
|
! if (kinematics_slipplane_opening_N(instance) <= 0.0_pReal) &
|
|
|
|
! call IO_error(211_pInt,el=instance,ext_msg='rate_sensitivity ('//KINEMATICS_slipplane_opening_LABEL//')')
|
|
|
|
|
|
|
|
end associate
|
2018-12-31 01:38:48 +05:30
|
|
|
enddo
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
end subroutine kinematics_slipplane_opening_init
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief contains the constitutive equation for calculating the velocity gradient
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-02-13 04:26:04 +05:30
|
|
|
subroutine kinematics_slipplane_opening_LiAndItsTangent(Ld, dLd_dTstar, S, ipc, ip, el)
|
2015-05-28 22:32:23 +05:30
|
|
|
use prec, only: &
|
|
|
|
tol_math_check
|
2019-02-13 04:26:04 +05:30
|
|
|
use math, only: &
|
2019-03-09 17:20:05 +05:30
|
|
|
math_mul33xx33, &
|
|
|
|
math_outer
|
2015-05-28 22:32:23 +05:30
|
|
|
use material, only: &
|
2018-12-31 01:38:48 +05:30
|
|
|
material_phase, &
|
2019-03-10 15:32:32 +05:30
|
|
|
material_homogenizationAt, &
|
2015-05-28 22:32:23 +05:30
|
|
|
damage, &
|
|
|
|
damageMapping
|
2019-03-09 17:20:05 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
implicit none
|
2019-03-09 17:20:05 +05:30
|
|
|
integer, intent(in) :: &
|
2015-05-28 22:32:23 +05:30
|
|
|
ipc, & !< grain number
|
|
|
|
ip, & !< integration point number
|
|
|
|
el !< element number
|
2019-02-13 04:26:04 +05:30
|
|
|
real(pReal), intent(in), dimension(3,3) :: &
|
|
|
|
S
|
2015-05-28 22:32:23 +05:30
|
|
|
real(pReal), intent(out), dimension(3,3) :: &
|
|
|
|
Ld !< damage velocity gradient
|
|
|
|
real(pReal), intent(out), dimension(3,3,3,3) :: &
|
2018-12-31 01:38:48 +05:30
|
|
|
dLd_dTstar !< derivative of Ld with respect to Tstar (4th-order tensor)
|
2015-05-28 22:32:23 +05:30
|
|
|
real(pReal), dimension(3,3) :: &
|
|
|
|
projection_d, projection_t, projection_n !< projection modes 3x3 tensor
|
2019-03-09 17:20:05 +05:30
|
|
|
integer :: &
|
2018-12-31 01:38:48 +05:30
|
|
|
instance, phase, &
|
2015-05-28 22:32:23 +05:30
|
|
|
homog, damageOffset, &
|
2019-03-09 17:20:05 +05:30
|
|
|
i, k, l, m, n
|
2015-05-28 22:32:23 +05:30
|
|
|
real(pReal) :: &
|
|
|
|
traction_d, traction_t, traction_n, traction_crit, &
|
|
|
|
udotd, dudotd_dt, udott, dudott_dt, udotn, dudotn_dt
|
|
|
|
|
2018-12-31 01:38:48 +05:30
|
|
|
phase = material_phase(ipc,ip,el)
|
2015-05-28 22:32:23 +05:30
|
|
|
instance = kinematics_slipplane_opening_instance(phase)
|
2019-03-10 15:32:32 +05:30
|
|
|
homog = material_homogenizationAt(el)
|
2015-05-28 22:32:23 +05:30
|
|
|
damageOffset = damageMapping(homog)%p(ip,el)
|
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
associate(prm => param(instance))
|
2015-05-28 22:32:23 +05:30
|
|
|
Ld = 0.0_pReal
|
2018-12-31 01:38:48 +05:30
|
|
|
dLd_dTstar = 0.0_pReal
|
2019-03-09 17:20:05 +05:30
|
|
|
do i = 1, prm%totalNslip
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
projection_d = math_outer(prm%slip_direction(1:3,i),prm%slip_normal(1:3,i))
|
|
|
|
projection_t = math_outer(prm%slip_transverse(1:3,i),prm%slip_normal(1:3,i))
|
|
|
|
projection_n = math_outer(prm%slip_normal(1:3,i),prm%slip_normal(1:3,i))
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-02-13 04:26:04 +05:30
|
|
|
traction_d = math_mul33xx33(S,projection_d)
|
|
|
|
traction_t = math_mul33xx33(S,projection_t)
|
|
|
|
traction_n = math_mul33xx33(S,projection_n)
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
traction_crit = prm%critLoad(i)* damage(homog)%p(damageOffset) ! degrading critical load carrying capacity by damage
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
udotd = sign(1.0_pReal,traction_d)* &
|
|
|
|
prm%sdot0* &
|
2015-05-28 22:32:23 +05:30
|
|
|
(abs(traction_d)/traction_crit - &
|
2019-03-09 17:20:05 +05:30
|
|
|
abs(traction_d)/prm%critLoad(i))**prm%n
|
2015-05-28 22:32:23 +05:30
|
|
|
if (abs(udotd) > tol_math_check) then
|
|
|
|
Ld = Ld + udotd*projection_d
|
2019-03-09 17:20:05 +05:30
|
|
|
dudotd_dt = udotd*prm%n/traction_d
|
2015-05-28 22:32:23 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-12-31 01:38:48 +05:30
|
|
|
dLd_dTstar(k,l,m,n) = dLd_dTstar(k,l,m,n) + &
|
2015-05-28 22:32:23 +05:30
|
|
|
dudotd_dt*projection_d(k,l)*projection_d(m,n)
|
|
|
|
endif
|
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
udott = sign(1.0_pReal,traction_t)* &
|
|
|
|
prm%sdot0* &
|
2015-05-28 22:32:23 +05:30
|
|
|
(abs(traction_t)/traction_crit - &
|
2019-03-09 17:20:05 +05:30
|
|
|
abs(traction_t)/prm%critLoad(i))**prm%n
|
2015-05-28 22:32:23 +05:30
|
|
|
if (abs(udott) > tol_math_check) then
|
|
|
|
Ld = Ld + udott*projection_t
|
2019-03-09 17:20:05 +05:30
|
|
|
dudott_dt = udott*prm%n/traction_t
|
2015-05-28 22:32:23 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-12-31 01:38:48 +05:30
|
|
|
dLd_dTstar(k,l,m,n) = dLd_dTstar(k,l,m,n) + &
|
2015-05-28 22:32:23 +05:30
|
|
|
dudott_dt*projection_t(k,l)*projection_t(m,n)
|
|
|
|
endif
|
2018-12-31 01:38:48 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
udotn = &
|
2019-03-09 17:20:05 +05:30
|
|
|
prm%sdot0* &
|
2015-05-28 22:32:23 +05:30
|
|
|
(max(0.0_pReal,traction_n)/traction_crit - &
|
2019-03-09 17:20:05 +05:30
|
|
|
max(0.0_pReal,traction_n)/prm%critLoad(i))**prm%n
|
2015-05-28 22:32:23 +05:30
|
|
|
if (abs(udotn) > tol_math_check) then
|
|
|
|
Ld = Ld + udotn*projection_n
|
2019-03-09 17:20:05 +05:30
|
|
|
dudotn_dt = udotn*prm%n/traction_n
|
2015-05-28 22:32:23 +05:30
|
|
|
forall (k=1_pInt:3_pInt,l=1_pInt:3_pInt,m=1_pInt:3_pInt,n=1_pInt:3_pInt) &
|
2018-12-31 01:38:48 +05:30
|
|
|
dLd_dTstar(k,l,m,n) = dLd_dTstar(k,l,m,n) + &
|
2015-05-28 22:32:23 +05:30
|
|
|
dudotn_dt*projection_n(k,l)*projection_n(m,n)
|
|
|
|
endif
|
|
|
|
enddo
|
|
|
|
|
2019-03-09 17:20:05 +05:30
|
|
|
end associate
|
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
end subroutine kinematics_slipplane_opening_LiAndItsTangent
|
|
|
|
|
|
|
|
end module kinematics_slipplane_opening
|