vectorization error
This commit is contained in:
parent
c9b5b3fb7b
commit
edebe4d1ed
|
@ -747,14 +747,14 @@ subroutine resolvedStress_slip(prm,S,tau_slip_pos,tau_slip_neg)
|
||||||
tau_slip_pos, &
|
tau_slip_pos, &
|
||||||
tau_slip_neg
|
tau_slip_neg
|
||||||
|
|
||||||
integer(pInt) :: j, k
|
integer(pInt) :: i,j
|
||||||
|
|
||||||
do j = 1_pInt, prm%totalNslip
|
do i = 1_pInt, prm%totalNslip
|
||||||
tau_slip_pos = math_mul33xx33(S,prm%Schmid_slip(1:3,1:3,j))
|
tau_slip_pos(i) = math_mul33xx33(S,prm%Schmid_slip(1:3,1:3,i))
|
||||||
tau_slip_neg = tau_slip_pos
|
tau_slip_neg(i) = tau_slip_pos(i)
|
||||||
do k = 1,size(prm%nonSchmidCoeff)
|
do j = 1,size(prm%nonSchmidCoeff)
|
||||||
tau_slip_pos = tau_slip_pos + math_mul33xx33(S,prm%nonSchmid_pos(1:3,1:3,k,j))
|
tau_slip_pos(i) = tau_slip_pos(i) + math_mul33xx33(S,prm%nonSchmid_pos(1:3,1:3,j,i))
|
||||||
tau_slip_neg = tau_slip_neg + math_mul33xx33(S,prm%nonSchmid_neg(1:3,1:3,k,j))
|
tau_slip_neg(i) = tau_slip_neg(i) + math_mul33xx33(S,prm%nonSchmid_neg(1:3,1:3,j,i))
|
||||||
enddo
|
enddo
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
|
@ -776,10 +776,10 @@ subroutine resolvedStress_twin(prm,S,tau_twin)
|
||||||
real, dimension(prm%totalNtwin), intent(out) :: &
|
real, dimension(prm%totalNtwin), intent(out) :: &
|
||||||
tau_twin
|
tau_twin
|
||||||
|
|
||||||
integer(pInt) :: j
|
integer(pInt) :: i
|
||||||
|
|
||||||
do j = 1_pInt, prm%totalNtwin
|
do i = 1_pInt, prm%totalNtwin
|
||||||
tau_twin(j) = math_mul33xx33(S,prm%Schmid_twin(1:3,1:3,j))
|
tau_twin(i) = math_mul33xx33(S,prm%Schmid_twin(1:3,1:3,i))
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
end subroutine resolvedStress_twin
|
end subroutine resolvedStress_twin
|
||||||
|
|
Loading…
Reference in New Issue