forall is deprecated

This commit is contained in:
Martin Diehl 2018-08-25 14:36:21 +02:00
parent 17d88184a7
commit e46605f0ef
1 changed files with 2 additions and 3 deletions

View File

@ -529,12 +529,11 @@ subroutine constitutive_LpAndItsTangent(Lp, dLp_dTstar, dLp_dFi, Tstar6, Fi, ipc
end select plasticityType
forall(i = 1_pInt:3_pInt, j = 1_pInt:3_pInt) &
do concurrent(i = 1_pInt:3_pInt, j = 1_pInt:3_pInt)
dLp_dFi(i,j,1:3,1:3) = math_mul33x33(math_mul33x33(Fi,Tstar),transpose(dLp_dTstar(i,j,1:3,1:3))) + &
math_mul33x33(math_mul33x33(Fi,dLp_dTstar(i,j,1:3,1:3)),Tstar)
forall(i = 1_pInt:3_pInt, j = 1_pInt:3_pInt) &
dLp_dTstar(i,j,1:3,1:3) = math_mul33x33(math_mul33x33(transpose(Fi),Fi),dLp_dTstar(i,j,1:3,1:3))
enddo
end subroutine constitutive_LpAndItsTangent