following dislotwin
This commit is contained in:
parent
bff186051c
commit
e20b705f54
|
@ -463,7 +463,7 @@ pure subroutine kinetics(Mp,T,ph,en, &
|
||||||
StressRatio, &
|
StressRatio, &
|
||||||
StressRatio_p,StressRatio_pminus1, &
|
StressRatio_p,StressRatio_pminus1, &
|
||||||
dvel, &
|
dvel, &
|
||||||
tau_pos,tau_neg, &
|
tau_pos, tau_neg, tau_eff, &
|
||||||
t_n, t_k, dtk,dtn
|
t_n, t_k, dtk,dtn
|
||||||
integer :: j
|
integer :: j
|
||||||
|
|
||||||
|
@ -482,8 +482,10 @@ pure subroutine kinetics(Mp,T,ph,en, &
|
||||||
dot_gamma_0 => stt%rho_mob(:,en)*prm%b_sl*prm%v_0, &
|
dot_gamma_0 => stt%rho_mob(:,en)*prm%b_sl*prm%v_0, &
|
||||||
effectiveLength => dst%Lambda_sl(:,en) - prm%w)
|
effectiveLength => dst%Lambda_sl(:,en) - prm%w)
|
||||||
|
|
||||||
significantPositiveTau: where(abs(tau_pos)-dst%tau_pass(:,en) > tol_math_check)
|
tau_eff = abs(tau_pos)-dst%tau_pass(:,en)
|
||||||
StressRatio = (abs(tau_pos)-dst%tau_pass(:,en))/prm%tau_Peierls
|
|
||||||
|
significantPositiveTau: where(tau_eff > tol_math_check)
|
||||||
|
StressRatio = tau_eff/prm%tau_Peierls
|
||||||
StressRatio_p = StressRatio** prm%p
|
StressRatio_p = StressRatio** prm%p
|
||||||
StressRatio_pminus1 = StressRatio**(prm%p-1.0_pReal)
|
StressRatio_pminus1 = StressRatio**(prm%p-1.0_pReal)
|
||||||
|
|
||||||
|
@ -510,8 +512,10 @@ pure subroutine kinetics(Mp,T,ph,en, &
|
||||||
end where significantPositiveTau2
|
end where significantPositiveTau2
|
||||||
end if
|
end if
|
||||||
|
|
||||||
significantNegativeTau: where(abs(tau_neg)-dst%tau_pass(:,en) > tol_math_check)
|
tau_eff = abs(tau_neg)-dst%tau_pass(:,en)
|
||||||
StressRatio = (abs(tau_neg)-dst%tau_pass(:,en))/prm%tau_Peierls
|
|
||||||
|
significantNegativeTau: where(tau_eff > tol_math_check)
|
||||||
|
StressRatio = tau_eff/prm%tau_Peierls
|
||||||
StressRatio_p = StressRatio** prm%p
|
StressRatio_p = StressRatio** prm%p
|
||||||
StressRatio_pminus1 = StressRatio**(prm%p-1.0_pReal)
|
StressRatio_pminus1 = StressRatio**(prm%p-1.0_pReal)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue