source: trunk/LMDZ.PLUTO.old/libf/bibio/ssum.F

Last change on this file 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

File size: 242 bytes
RevLine 
[3175]1      function ssum(n,sx,incx)
2c
3      IMPLICIT NONE
4c
5      integer n,incx,i,ix
6      real ssum,sx((n-1)*incx+1)
7c
8      ssum=0.
9      ix=1
10      do 10 i=1,n
11      ssum=ssum+sx(ix)
12         ix=ix+incx
1310    continue
14c
15      return
16      end
Note: See TracBrowser for help on using the repository browser.