/[MITgcm]/MITgcm/pkg/diagnostics/diagnostics_fract_fill.F
ViewVC logotype

Annotation of /MITgcm/pkg/diagnostics/diagnostics_fract_fill.F

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


Revision 1.5 - (hide annotations) (download)
Tue Feb 5 15:13:01 2008 UTC (16 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint60, checkpoint61, checkpoint59q, checkpoint59p, checkpoint59r, checkpoint59o, checkpoint59n, checkpoint61f, checkpoint61g, checkpoint61d, checkpoint61e, checkpoint61b, checkpoint61c, checkpoint61a, checkpoint61n, checkpoint61o, checkpoint61l, checkpoint61m, checkpoint61j, checkpoint61k, checkpoint61h, checkpoint61i, checkpoint61t, checkpoint61u, checkpoint61r, checkpoint61s, checkpoint61p, checkpoint61q
Changes since 1.4: +10 -9 lines
In order to deal with large number of diagnostics (happens with large number
of tracers), store diagnostic mate number in dedicate array "hdiag":
- new version of S/R DIAGNOSTICS_ADD2LIST : DIAGNOSTICS_ADDTOLIST
  with 1 more argument (mate number).
- change old version of DIAGNOSTICS_ADD2LIST to extract mate number
  from parsing code and then call DIAGNOSTICS_ADDTOLIST
- modify setting, filling & output to use "hdiag" instead of reading
  mate number from gdiag.

1 jmc 1.5 C $Header: /u/gcmpack/MITgcm/pkg/diagnostics/diagnostics_fract_fill.F,v 1.4 2006/07/31 16:26:32 jmc Exp $
2 jmc 1.1 C $Name: $
3    
4     #include "DIAG_OPTIONS.h"
5    
6     CBOP
7     C !ROUTINE: DIAGNOSTICS_FRACT_FILL
8     C !INTERFACE:
9     SUBROUTINE DIAGNOSTICS_FRACT_FILL(
10 jmc 1.2 I inpFld, fractFld, scaleFact, power, chardiag,
11 jmc 1.5 I kLev, nLevs, bibjFlg, biArg, bjArg, myThid )
12 jmc 1.1
13     C !DESCRIPTION:
14     C***********************************************************************
15     C Wrapper routine to increment the diagnostics arrays with a field
16 jmc 1.2 C using a scaling factor & square option (power=2)
17     C and using a fraction-weight (assumed to be the counter-mate
18     C of the current diagnostics)
19 jmc 1.1 C Note: 1) fraction-weight has to correspond to the diagnostics
20     C counter-mate (filled independently with a call to
21     C DIAGNOSTICS_FILL)
22     C 2) assume for now that inpFld & fractFld are both _RL and
23     C have the same horizontal shape (overlap,bi,bj ...)
24     C***********************************************************************
25     C !USES:
26     IMPLICIT NONE
27    
28     C == Global variables ===
29     #include "EEPARAMS.h"
30     #include "SIZE.h"
31     #include "DIAGNOSTICS_SIZE.h"
32     #include "DIAGNOSTICS.h"
33    
34     C !INPUT PARAMETERS:
35     C***********************************************************************
36     C Arguments Description
37     C ----------------------
38     C inpFld :: Field to increment diagnostics array
39     C fractFld :: fraction used for weighted average diagnostics
40     C scaleFact :: scaling factor
41 jmc 1.2 C power :: option to fill-in with the field square (power=2)
42 jmc 1.1 C chardiag :: Character expression for diag to fill
43     C kLev :: Integer flag for vertical levels:
44     C > 0 (any integer): WHICH single level to increment in qdiag.
45     C 0,-1 to increment "nLevs" levels in qdiag,
46     C 0 : fill-in in the same order as the input array
47     C -1: fill-in in reverse order.
48     C nLevs :: indicates Number of levels of the input field array
49     C (whether to fill-in all the levels (kLev<1) or just one (kLev>0))
50     C bibjFlg :: Integer flag to indicate instructions for bi bj loop
51     C 0 indicates that the bi-bj loop must be done here
52     C 1 indicates that the bi-bj loop is done OUTSIDE
53     C 2 indicates that the bi-bj loop is done OUTSIDE
54     C AND that we have been sent a local array (with overlap regions)
55     C 3 indicates that the bi-bj loop is done OUTSIDE
56     C AND that we have been sent a local array
57     C AND that the array has no overlap region (interior only)
58     C NOTE - bibjFlg can be NEGATIVE to indicate not to increment counter
59     C biArg :: X-direction tile number - used for bibjFlg=1-3
60     C bjArg :: Y-direction tile number - used for bibjFlg=1-3
61     C myThid :: my thread Id number
62     C***********************************************************************
63     C NOTE: User beware! If a local (1 tile only) array
64     C is sent here, bibjFlg MUST NOT be set to 0
65     C or there will be out of bounds problems!
66     C***********************************************************************
67     _RL inpFld(*)
68     _RL fractFld(*)
69     _RL scaleFact
70 jmc 1.2 INTEGER power
71 jmc 1.1 CHARACTER*8 chardiag
72     INTEGER kLev, nLevs, bibjFlg, biArg, bjArg
73     INTEGER myThid
74     CEOP
75    
76     C !LOCAL VARIABLES:
77     C ndId :: diagnostic Id number (in available diagnostics list)
78     C ===============
79     INTEGER m, n, j, k, l, bi, bj
80     INTEGER ndId, ipt, iSp
81     INTEGER region2fill(0:nRegions)
82     INTEGER mate, nLevFract
83 jmc 1.5 CHARACTER*10 gcode
84 jmc 1.1 CHARACTER*(MAX_LEN_MBUF) msgBuf
85    
86     IF ( bibjFlg.EQ.0 ) THEN
87 jmc 1.4 bi = myBxLo(myThid)
88     bj = myByLo(myThid)
89 jmc 1.1 ELSE
90     bi = biArg
91     bj = bjArg
92     ENDIF
93     C-- 2D/3D Diagnostics :
94     C Run through list of active diagnostics to make sure
95     C we are trying to fill a valid diagnostic
96     DO n=1,nlists
97     DO m=1,nActive(n)
98     IF ( chardiag.EQ.flds(m,n) .AND. idiag(m,n).GT.0 ) THEN
99     ipt = idiag(m,n)
100     IF ( ndiag(ipt,bi,bj).GE.0 ) THEN
101     ndId = jdiag(m,n)
102 jmc 1.3 ipt = ipt + pdiag(n,bi,bj)*kdiag(ndId)
103 jmc 1.1 C- check for a counter-mate:
104     mate = 0
105 jmc 1.5 gcode = gdiag(ndId)(1:10)
106     IF ( gcode(5:5).EQ.'C' ) mate = hdiag(ndId)
107 jmc 1.1 IF ( mdiag(m,n).EQ.0 ) mate = 0
108     IF ( mate.LE.0 ) THEN
109     WRITE(msgBuf,'(2A)') 'DIAGNOSTICS_FRACT_FILL: ',
110     & 'did not find a valid counter-mate'
111     CALL PRINT_ERROR( msgBuf , myThid )
112 jmc 1.5 WRITE(msgBuf,'(2A,I6,2A)') 'DIAGNOSTICS_FRACT_FILL: ',
113 jmc 1.1 & 'for diag(#',ndId,' ) :', chardiag
114     CALL PRINT_ERROR( msgBuf , myThid )
115     STOP 'ABNORMAL END: S/R DIAGNOSTICS_FRACT_FILL'
116     ENDIF
117     C- set the nb of levels of fraction-weight field (not > kdiag(mate))
118     nLevFract = MIN(nLevs,kdiag(mate))
119     C- diagnostic is valid & active, has a counter-mate, do the filling:
120     CALL DIAGNOSTICS_FILL_FIELD(
121 jmc 1.2 I inpFld, fractFld, scaleFact, power, nLevFract,
122     I ndId, ipt, kLev, nLevs,
123     I bibjFlg, biArg, bjArg, myThid )
124 jmc 1.1 ENDIF
125     ENDIF
126     ENDDO
127     ENDDO
128    
129     C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
130     C-- Global/Regional Statistics :
131    
132     C Run through list of active statistics-diagnostics to make sure
133     C we are trying to compute & fill a valid diagnostic
134    
135     DO n=1,diagSt_nbLists
136     DO m=1,diagSt_nbActv(n)
137     IF ( chardiag.EQ.diagSt_Flds(m,n) .AND. iSdiag(m,n).GT.0 ) THEN
138     iSp = iSdiag(m,n)
139     IF ( qSdiag(0,0,iSp,bi,bj).GE.0. ) THEN
140     ndId = jSdiag(m,n)
141     C- check for a counter-mate:
142     mate = 0
143 jmc 1.5 gcode = gdiag(ndId)(1:10)
144     c IF ( gcode(5:5).EQ.'C' ) READ(gcode,'(5X,I3)') mate
145     IF ( gcode(5:5).EQ.'C' ) mate = hdiag(ndId)
146 jmc 1.1 IF ( mSdiag(m,n).EQ.0 ) mate = 0
147     IF ( mate.LE.0 ) THEN
148     WRITE(msgBuf,'(2A)') 'DIAGNOSTICS_FRACT_FILL: ',
149     & 'did not find a valid counter-mate'
150     CALL PRINT_ERROR( msgBuf , myThid )
151 jmc 1.5 WRITE(msgBuf,'(2A,I6,2A)') 'DIAGNOSTICS_FRACT_FILL: ',
152 jmc 1.1 & 'for diag(#',ndId,' ) :', chardiag
153     CALL PRINT_ERROR( msgBuf , myThid )
154     STOP 'ABNORMAL END: S/R DIAGNOSTICS_FRACT_FILL'
155     ENDIF
156     C- set the nb of levels of fraction-weight field (not > kdiag(mate))
157     nLevFract = MIN(nLevs,kdiag(mate))
158     C- Find list of regions to fill:
159     DO j=0,nRegions
160     region2fill(j) = diagSt_region(j,n)
161     ENDDO
162     C- if this diagnostics appears in several lists (with same freq)
163     C then add regions from other lists
164     DO l=1,diagSt_nbLists
165     DO k=1,diagSt_nbActv(l)
166     IF ( iSdiag(k,l).EQ.-iSp ) THEN
167     DO j=0,nRegions
168     region2fill(j) = MAX(region2fill(j),diagSt_region(j,l))
169     ENDDO
170     ENDIF
171     ENDDO
172     ENDDO
173     C- diagnostics is valid and Active, has a counter mate: Now do the filling
174     CALL DIAGSTATS_FILL(
175 jmc 1.2 I inpFld, fractFld, scaleFact, power, nLevFract,
176     I ndId, iSp, region2fill, kLev, nLevs,
177     I bibjFlg, biArg, bjArg, myThid )
178 jmc 1.1 ENDIF
179     ENDIF
180     ENDDO
181     ENDDO
182    
183     RETURN
184     END

  ViewVC Help
Powered by ViewVC 1.1.22