I cant compile below subroutine ,
subroutine vdload (
C Read only (unmodifiable)variables -
1 nblock, ndim, stepTime, totalTime,
2 amplitude, curCoords, velocity, dirCos, jltyp, sname,
C Write only (modifiable) variable -
1 value )
C
include 'vaba_param.inc'
C
dimension curCoords(nblock,ndim), velocity(nblock,ndim),
1 dirCos(nblock,ndim,ndim), value(nblock)
character*80 sname
Real R,r,i,j,P0
t=steptime
P0=2.3000000
R=0.1
x=(2*R**2)*t
C
do 100 km = 1, nblock
r=sqrt((curCoords(km,1))**2+(curCoords(km,2))**2)
P=P0*t*exp(-(r/x))
value=P
100 continue
return
end
several times i debog it and retry to run, I encountered this error
anyone can help me solve this problem ?