source: trunk/LMDZ.PLUTO.old/libf/filtrez/acc.F @ 3436

Last change on this file since 3436 was 3175, checked in by emillour, 11 months ago

Pluto PCM:
Add the old Pluto LMDZ for reference (required prior step to making
an LMDZ.PLUTO using the same framework as the other physics packages).
TB+EM

  • Property svn:executable set to *
File size: 256 bytes
Line 
1        subroutine acc(vec,d,im)
2        dimension vec(im,im),d(im)
3        do 10 j=1,im
4        do 9 i=1,im
5 9      d(i)=vec(i,j)*vec(i,j)
6        sum=ssum(im,d,1)
7        sum=sqrt(sum)
8        do 10 i=1,im
9 10     vec(i,j)=vec(i,j)/sum
10        return
11        end
Note: See TracBrowser for help on using the repository browser.