2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2016-02-29 18:56:06 +05:30
|
|
|
!> @author Luv Sharma, Max-Planck-Institut für Eisenforschung GmbH
|
|
|
|
!> @author Pratheek Shanthraj, Max-Planck-Institut für Eisenforschung GmbH
|
2015-05-28 22:32:23 +05:30
|
|
|
!> @brief material subroutine incorporating kinematics resulting from opening of cleavage planes
|
|
|
|
!> @details to be done
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
module kinematics_cleavage_opening
|
2019-05-17 02:44:47 +05:30
|
|
|
use prec
|
|
|
|
use IO
|
|
|
|
use config
|
|
|
|
use debug
|
|
|
|
use math
|
|
|
|
use lattice
|
|
|
|
use material
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2019-05-28 15:36:21 +05:30
|
|
|
implicit none
|
|
|
|
private
|
|
|
|
|
|
|
|
integer, dimension(:), allocatable :: kinematics_cleavage_opening_instance
|
|
|
|
|
|
|
|
type :: tParameters !< container type for internal constitutive parameters
|
|
|
|
integer :: &
|
|
|
|
totalNcleavage
|
|
|
|
integer, dimension(:), allocatable :: &
|
|
|
|
Ncleavage !< active number of cleavage systems per family
|
|
|
|
real(pReal) :: &
|
|
|
|
sdot0, &
|
|
|
|
n
|
|
|
|
real(pReal), dimension(:), allocatable :: &
|
|
|
|
critLoad
|
2020-02-29 00:16:18 +05:30
|
|
|
real(pReal), dimension(:,:,:,:), allocatable :: &
|
|
|
|
cleavage_systems
|
|
|
|
end type tParameters
|
|
|
|
|
|
|
|
type(tParameters), dimension(:), allocatable :: param !< containers of constitutive parameters (len Ninstance)
|
|
|
|
|
2019-05-28 15:36:21 +05:30
|
|
|
public :: &
|
|
|
|
kinematics_cleavage_opening_init, &
|
|
|
|
kinematics_cleavage_opening_LiAndItsTangent
|
2015-05-28 22:32:23 +05:30
|
|
|
|
|
|
|
contains
|
|
|
|
|
|
|
|
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
!> @brief module initialization
|
|
|
|
!> @details reads in material parameters, allocates arrays, and does sanity checks
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-05-17 02:44:47 +05:30
|
|
|
subroutine kinematics_cleavage_opening_init
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
integer :: Ninstance,p
|
|
|
|
character(len=pStringLen) :: extmsg = ''
|
2019-05-28 15:36:21 +05:30
|
|
|
|
2020-01-10 05:58:32 +05:30
|
|
|
write(6,'(/,a)') ' <<<+- kinematics_'//KINEMATICS_cleavage_opening_LABEL//' init -+>>>'; flush(6)
|
2019-05-28 15:36:21 +05:30
|
|
|
|
2020-02-28 14:55:07 +05:30
|
|
|
Ninstance = count(phase_kinematics == KINEMATICS_cleavage_opening_ID)
|
2019-05-28 15:36:21 +05:30
|
|
|
if (iand(debug_level(debug_constitutive),debug_levelBasic) /= 0) &
|
2020-02-28 14:55:07 +05:30
|
|
|
write(6,'(a16,1x,i5,/)') '# instances:',Ninstance
|
2020-02-28 14:34:38 +05:30
|
|
|
|
2019-05-28 15:36:21 +05:30
|
|
|
allocate(kinematics_cleavage_opening_instance(size(config_phase)), source=0)
|
2020-02-29 14:06:42 +05:30
|
|
|
allocate(param(Ninstance))
|
2019-05-28 15:36:21 +05:30
|
|
|
|
|
|
|
do p = 1, size(config_phase)
|
2020-02-29 14:06:42 +05:30
|
|
|
kinematics_cleavage_opening_instance(p) = count(phase_kinematics(:,1:p) == kinematics_cleavage_opening_ID)
|
2019-05-28 15:36:21 +05:30
|
|
|
if (all(phase_kinematics(:,p) /= KINEMATICS_cleavage_opening_ID)) cycle
|
2020-02-29 02:14:40 +05:30
|
|
|
|
|
|
|
associate(prm => param(kinematics_cleavage_opening_instance(p)), &
|
|
|
|
config => config_phase(p))
|
2020-02-28 14:55:07 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
prm%Ncleavage = config%getInts('ncleavage')
|
|
|
|
prm%totalNcleavage = sum(prm%Ncleavage)
|
2020-02-28 14:55:07 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
prm%n = config%getFloat('anisobrittle_ratesensitivity')
|
|
|
|
prm%sdot0 = config%getFloat('anisobrittle_sdot0')
|
2020-02-29 02:14:40 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
prm%critLoad = config%getFloats('anisobrittle_criticalload',requiredSize=size(prm%Ncleavage))
|
2020-02-29 11:09:16 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
prm%cleavage_systems = lattice_SchmidMatrix_cleavage(prm%Ncleavage,config%getString('lattice_structure'),&
|
|
|
|
config%getFloat('c/a',defaultVal=0.0_pReal))
|
2020-02-29 02:14:40 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
! expand: family => system
|
|
|
|
prm%critLoad = math_expand(prm%critLoad, prm%Ncleavage)
|
2020-02-29 11:09:16 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
! sanity checks
|
|
|
|
if (prm%n <= 0.0_pReal) extmsg = trim(extmsg)//' anisobrittle_n'
|
|
|
|
if (prm%sdot0 <= 0.0_pReal) extmsg = trim(extmsg)//' anisobrittle_sdot0'
|
|
|
|
if (any(prm%critLoad < 0.0_pReal)) extmsg = trim(extmsg)//' anisobrittle_critLoad'
|
2020-02-29 02:14:40 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
|
|
|
! exit if any parameter is out of range
|
|
|
|
if (extmsg /= '') call IO_error(211,ext_msg=trim(extmsg)//'('//SOURCE_DAMAGE_ANISOBRITTLE_LABEL//')')
|
2020-02-28 14:55:07 +05:30
|
|
|
|
|
|
|
end associate
|
2019-05-28 15:36:21 +05:30
|
|
|
enddo
|
2020-02-28 14:34:38 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
end subroutine kinematics_cleavage_opening_init
|
2020-02-28 14:34:38 +05:30
|
|
|
|
2020-02-29 14:50:38 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-02-28 14:34:38 +05:30
|
|
|
!> @brief contains the constitutive equation for calculating the velocity gradient
|
2015-05-28 22:32:23 +05:30
|
|
|
!--------------------------------------------------------------------------------------------------
|
2019-02-13 04:26:04 +05:30
|
|
|
subroutine kinematics_cleavage_opening_LiAndItsTangent(Ld, dLd_dTstar, S, ipc, ip, el)
|
2020-02-28 14:34:38 +05:30
|
|
|
|
2019-05-28 15:36:21 +05:30
|
|
|
integer, intent(in) :: &
|
|
|
|
ipc, & !< grain number
|
|
|
|
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-05-28 15:36:21 +05:30
|
|
|
integer :: &
|
|
|
|
homog, damageOffset, &
|
2020-02-29 02:14:40 +05:30
|
|
|
i, k, l, m, n
|
2019-05-28 15:36:21 +05:30
|
|
|
real(pReal) :: &
|
|
|
|
traction_d, traction_t, traction_n, traction_crit, &
|
|
|
|
udotd, dudotd_dt, udott, dudott_dt, udotn, dudotn_dt
|
|
|
|
|
|
|
|
homog = material_homogenizationAt(el)
|
|
|
|
damageOffset = damageMapping(homog)%p(ip,el)
|
2020-02-28 14:34:38 +05:30
|
|
|
|
2019-05-28 15:36:21 +05:30
|
|
|
Ld = 0.0_pReal
|
|
|
|
dLd_dTstar = 0.0_pReal
|
2020-02-29 14:50:38 +05:30
|
|
|
associate(prm => param(kinematics_cleavage_opening_instance(material_phaseAt(ipc,el))))
|
|
|
|
do i = 1,prm%totalNcleavage
|
2020-02-29 14:57:22 +05:30
|
|
|
traction_crit = prm%critLoad(i)* damage(homog)%p(damageOffset)**2.0_pReal
|
|
|
|
|
2020-02-29 15:25:52 +05:30
|
|
|
traction_d = math_mul33xx33(S,prm%cleavage_systems(1:3,1:3,1,i))
|
|
|
|
if (abs(traction_d) > tol_math_check + traction_crit) then
|
|
|
|
udotd = sign(1.0_pReal,traction_d)* prm%sdot0 * ((abs(traction_d) - traction_crit)/traction_crit)**prm%n
|
2020-02-29 14:50:38 +05:30
|
|
|
Ld = Ld + udotd*prm%cleavage_systems(1:3,1:3,1,i)
|
2020-02-29 15:25:52 +05:30
|
|
|
dudotd_dt = sign(1.0_pReal,traction_d)*udotd*prm%n / (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-02-29 15:25:52 +05:30
|
|
|
traction_t = math_mul33xx33(S,prm%cleavage_systems(1:3,1:3,2,i))
|
|
|
|
if (abs(traction_t) > tol_math_check + traction_crit) then
|
|
|
|
udott = sign(1.0_pReal,traction_t)* prm%sdot0 * ((abs(traction_t) - traction_crit)/traction_crit)**prm%n
|
2020-02-29 14:50:38 +05:30
|
|
|
Ld = Ld + udott*prm%cleavage_systems(1:3,1:3,2,i)
|
2020-02-29 15:25:52 +05:30
|
|
|
dudott_dt = sign(1.0_pReal,traction_t)*udott*prm%n / (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-02-29 15:25:52 +05:30
|
|
|
traction_n = math_mul33xx33(S,prm%cleavage_systems(1:3,1:3,3,i))
|
|
|
|
if (abs(traction_n) > tol_math_check + traction_crit) then
|
|
|
|
udotn = sign(1.0_pReal,traction_n)* prm%sdot0 * ((abs(traction_n) - traction_crit)/traction_crit)**prm%n
|
2020-02-29 14:50:38 +05:30
|
|
|
Ld = Ld + udotn*prm%cleavage_systems(1:3,1:3,3,i)
|
2020-02-29 15:25:52 +05:30
|
|
|
dudotn_dt = sign(1.0_pReal,traction_n)*udotn*prm%n / (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
|
2019-05-28 15:36:21 +05:30
|
|
|
enddo
|
2020-02-29 14:50:38 +05:30
|
|
|
end associate
|
2020-02-28 14:34:38 +05:30
|
|
|
|
2015-05-28 22:32:23 +05:30
|
|
|
end subroutine kinematics_cleavage_opening_LiAndItsTangent
|
|
|
|
|
|
|
|
end module kinematics_cleavage_opening
|