/[MITgcm]/MITgcm/diags/src/timeaver_final_xyz.F
ViewVC logotype

Annotation of /MITgcm/diags/src/timeaver_final_xyz.F

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (hide annotations) (download)
Sat Aug 22 17:51:05 1998 UTC (25 years, 10 months ago) by cnh
Branch: MAIN
CVS Tags: checkpoint15, checkpoint14
Changes since 1.1: +3 -3 lines
Isomorphism consistency changes

1 adcroft 1.1 #include "CPP_EEOPTIONS.h"
2    
3     CStartofinterface
4     SUBROUTINE TIMEAVER_FINAL_XYZ( fldtave, timeave, bi, bj, K, myThid )
5     C /==========================================================\
6     C | SUBROUTINE TIMEAVER_FINAL_XY |
7     C | o Get final average of field |
8     C \==========================================================/
9    
10     C == Global variables ===
11     #include "SIZE.h"
12     #include "EEPARAMS.h"
13    
14     C == Routine arguments ==
15     C myThid - Thread number for this instance of the routine.
16     C timeave - time averaged
17     C fldtave - time averaged Field
18     INTEGER bi, bj, K, myThid
19 cnh 1.2 _RL fldtave(1-OLx:sNx+OLx,1-OLy:sNy+OLy,Nr,nSx,nSy)
20     REAL timeave(Nr,nSx,nSy)
21 adcroft 1.1
22     CEndofinterface
23    
24     C == Local variables ==
25     C i,j,k,bi,bj - Loop counters
26     INTEGER i, j
27    
28     C DO bj = myByLo(myThid), myByHi(myThid)
29     C DO bi = myBxLo(myThid), myBxHi(myThid)
30 cnh 1.2 C DO k=1,Nr
31 adcroft 1.1 DO j=1,sNy
32     DO i=1,sNx
33     fldtave(i,j,k,bi,bj) = fldtave(i,j,k,bi,bj) / timeave(k,bi,bj)
34     ENDDO
35     ENDDO
36     C ENDDO
37     C ENDDO
38     C ENDDO
39    
40     RETURN
41     END

  ViewVC Help
Powered by ViewVC 1.1.22