intent(out) specifier for getXX functions
This commit is contained in:
parent
fdbaf00fa7
commit
7fe20fe805
|
@ -1873,9 +1873,9 @@ subroutine constitutive_getAccumulatedSlip(nSlip,accumulatedSlip,ipc, ip, el)
|
||||||
|
|
||||||
implicit none
|
implicit none
|
||||||
|
|
||||||
real(pReal), dimension(:), allocatable :: &
|
real(pReal), dimension(:), intent(out), allocatable :: &
|
||||||
accumulatedSlip
|
accumulatedSlip
|
||||||
integer(pInt) :: &
|
integer(pInt), intent(out) :: &
|
||||||
nSlip
|
nSlip
|
||||||
integer(pInt), intent(in) :: &
|
integer(pInt), intent(in) :: &
|
||||||
ipc, & !< grain number
|
ipc, & !< grain number
|
||||||
|
@ -1936,9 +1936,9 @@ subroutine constitutive_getSlipRate(nSlip,slipRate,Lp,ipc, ip, el)
|
||||||
|
|
||||||
implicit none
|
implicit none
|
||||||
|
|
||||||
real(pReal), dimension(:), allocatable :: &
|
real(pReal), dimension(:), intent(out), allocatable :: &
|
||||||
slipRate
|
slipRate
|
||||||
integer(pInt) :: &
|
integer(pInt), intent(out) :: &
|
||||||
nSlip
|
nSlip
|
||||||
real(pReal), intent(in), dimension(3,3) :: &
|
real(pReal), intent(in), dimension(3,3) :: &
|
||||||
Lp !< plastic velocity gradient
|
Lp !< plastic velocity gradient
|
||||||
|
|
Loading…
Reference in New Issue