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
|
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
submodule(constitutive:constitutive_damage) kinematics_cleavage_opening
|
2019-05-28 15:36:21 +05:30
|
|
|
|
|
|
|
integer, dimension(:), allocatable :: kinematics_cleavage_opening_instance
|
|
|
|
|
|
|
|
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
|
2019-05-28 15:36:21 +05:30
|
|
|
real(pReal) :: &
|
2020-08-15 19:32:10 +05:30
|
|
|
sdot0, & !< opening rate of cleavage planes
|
|
|
|
n !< damage rate sensitivity
|
2019-05-28 15:36:21 +05:30
|
|
|
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)
|
|
|
|
|
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_cleavage_opening_init(kinematics_length) result(myKinematics)
|
|
|
|
|
|
|
|
integer, intent(in) :: kinematics_length
|
|
|
|
logical, dimension(:,:), allocatable :: myKinematics
|
2015-05-28 22:32:23 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
integer :: Ninstance,p,k
|
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, &
|
|
|
|
pl, &
|
|
|
|
kinematics, &
|
|
|
|
kinematic_type
|
|
|
|
|
2020-09-18 02:27:56 +05:30
|
|
|
print'(/,a)', ' <<<+- kinematics_cleavage_opening init -+>>>'
|
2020-08-15 19:32:10 +05:30
|
|
|
|
|
|
|
myKinematics = kinematics_active('cleavage_opening',kinematics_length)
|
|
|
|
Ninstance = count(myKinematics)
|
2020-09-22 15:43:50 +05:30
|
|
|
print'(a,i2)', ' # instances: ',Ninstance; flush(OUTPUT_UNIT)
|
2020-08-15 19:32:10 +05:30
|
|
|
if(Ninstance == 0) return
|
2020-02-28 14:34:38 +05:30
|
|
|
|
2020-09-13 14:09:17 +05:30
|
|
|
phases => config_material%get('phase')
|
2020-02-29 14:06:42 +05:30
|
|
|
allocate(param(Ninstance))
|
2020-08-15 19:32:10 +05:30
|
|
|
allocate(kinematics_cleavage_opening_instance(phases%length), source=0)
|
2019-05-28 15:36:21 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
do p = 1, phases%length
|
|
|
|
if(any(myKinematics(:,p))) kinematics_cleavage_opening_instance(p) = count(myKinematics(:,1:p))
|
|
|
|
phase => phases%get(p)
|
|
|
|
pl => phase%get('plasticity')
|
|
|
|
if(count(myKinematics(:,p)) == 0) cycle
|
|
|
|
kinematics => phase%get('kinematics')
|
|
|
|
do k = 1, kinematics%length
|
|
|
|
if(myKinematics(k,p)) then
|
|
|
|
associate(prm => param(kinematics_cleavage_opening_instance(p)))
|
|
|
|
kinematic_type => kinematics%get(k)
|
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-08-15 19:32:10 +05:30
|
|
|
prm%n = kinematic_type%get_asFloat('q')
|
|
|
|
prm%sdot0 = kinematic_type%get_asFloat('dot_o')
|
2020-02-29 02:14:40 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
prm%critLoad = kinematic_type%get_asFloats('g_crit',requiredSize=size(N_cl))
|
2020-02-29 11:09:16 +05:30
|
|
|
|
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
|
|
|
|
prm%critLoad = math_expand(prm%critLoad,N_cl)
|
2020-02-29 11:09:16 +05:30
|
|
|
|
2020-08-15 19:32:10 +05:30
|
|
|
! sanity checks
|
|
|
|
if (prm%n <= 0.0_pReal) extmsg = trim(extmsg)//' q'
|
|
|
|
if (prm%sdot0 <= 0.0_pReal) extmsg = trim(extmsg)//' dot_o'
|
|
|
|
if (any(prm%critLoad < 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)')
|
|
|
|
end associate
|
|
|
|
endif
|
|
|
|
enddo
|
2019-05-28 15:36:21 +05:30
|
|
|
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
|
|
|
|
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
|
|
|
!--------------------------------------------------------------------------------------------------
|
2020-07-09 04:31:08 +05:30
|
|
|
module 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))))
|
2020-03-17 04:01:43 +05:30
|
|
|
do i = 1,prm%sum_N_cl
|
2020-02-29 14:57:22 +05:30
|
|
|
traction_crit = prm%critLoad(i)* damage(homog)%p(damageOffset)**2.0_pReal
|
|
|
|
|
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-02-29 15:25:52 +05:30
|
|
|
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-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-02-29 15:25:52 +05:30
|
|
|
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-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-02-29 15:25:52 +05:30
|
|
|
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
|
|
|
|
|
2020-07-09 04:31:08 +05:30
|
|
|
end submodule kinematics_cleavage_opening
|