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

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

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


Revision 1.2 - (hide annotations) (download)
Mon Jul 11 18:59:07 2005 UTC (18 years, 10 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint57t_post, checkpoint57o_post, checkpoint58e_post, checkpoint57m_post, checkpoint57s_post, checkpoint57y_post, checkpoint57y_pre, checkpoint57v_post, checkpoint57r_post, checkpoint58, checkpoint58f_post, checkpoint57x_post, checkpoint57n_post, checkpoint58d_post, checkpoint58c_post, checkpoint57w_post, checkpoint57p_post, checkpint57u_post, checkpoint58a_post, checkpoint57q_post, checkpoint57z_post, checkpoint58b_post, checkpoint57l_post
Changes since 1.1: +12 -10 lines
add option to fill a squared diagnostics directly.

1 jmc 1.2 C $Header: /u/gcmpack/MITgcm/pkg/diagnostics/diagnostics_scale_fill.F,v 1.1 2005/07/10 00:58:11 jmc Exp $
2 jmc 1.1 C $Name: $
3    
4     #include "DIAG_OPTIONS.h"
5    
6     CBOP
7     C !ROUTINE: DIAGNOSTICS_SCALE_FILL
8     C !INTERFACE:
9     SUBROUTINE DIAGNOSTICS_SCALE_FILL(
10 jmc 1.2 I inpFld, scaleFact, power, chardiag,
11     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 jmc 1.1 C***********************************************************************
18     C !USES:
19     IMPLICIT NONE
20    
21     C == Global variables ===
22     #include "EEPARAMS.h"
23     #include "SIZE.h"
24     #include "DIAGNOSTICS_SIZE.h"
25     #include "DIAGNOSTICS.h"
26    
27     C !INPUT PARAMETERS:
28     C***********************************************************************
29     C Arguments Description
30     C ----------------------
31     C inpFld :: Field to increment diagnostics array
32     C scaleFact :: scaling factor
33 jmc 1.2 C power :: option to fill-in with the field square (power=2)
34 jmc 1.1 C chardiag :: Character expression for diag to fill
35     C kLev :: Integer flag for vertical levels:
36     C > 0 (any integer): WHICH single level to increment in qdiag.
37     C 0,-1 to increment "nLevs" levels in qdiag,
38     C 0 : fill-in in the same order as the input array
39     C -1: fill-in in reverse order.
40     C nLevs :: indicates Number of levels of the input field array
41     C (whether to fill-in all the levels (kLev<1) or just one (kLev>0))
42     C bibjFlg :: Integer flag to indicate instructions for bi bj loop
43     C 0 indicates that the bi-bj loop must be done here
44     C 1 indicates that the bi-bj loop is done OUTSIDE
45     C 2 indicates that the bi-bj loop is done OUTSIDE
46     C AND that we have been sent a local array (with overlap regions)
47     C 3 indicates that the bi-bj loop is done OUTSIDE
48     C AND that we have been sent a local array
49     C AND that the array has no overlap region (interior only)
50     C NOTE - bibjFlg can be NEGATIVE to indicate not to increment counter
51     C biArg :: X-direction tile number - used for bibjFlg=1-3
52     C bjArg :: Y-direction tile number - used for bibjFlg=1-3
53     C myThid :: my thread Id number
54     C***********************************************************************
55     C NOTE: User beware! If a local (1 tile only) array
56     C is sent here, bibjFlg MUST NOT be set to 0
57     C or there will be out of bounds problems!
58     C***********************************************************************
59     _RL inpFld(*)
60     _RL scaleFact
61 jmc 1.2 INTEGER power
62 jmc 1.1 CHARACTER*8 chardiag
63     INTEGER kLev, nLevs, bibjFlg, biArg, bjArg
64     INTEGER myThid
65     CEOP
66    
67     C !LOCAL VARIABLES:
68     C ndId :: diagnostic Id number (in available diagnostics list)
69     C ===============
70     INTEGER m, n, j, k, l, bi, bj
71     INTEGER ndId, ipt, iSp
72     INTEGER region2fill(0:nRegions)
73    
74     IF ( bibjFlg.EQ.0 ) THEN
75     bi = 1
76     bj = 1
77     ELSE
78     bi = biArg
79     bj = bjArg
80     ENDIF
81     C-- 2D/3D Diagnostics :
82     C Run through list of active diagnostics to make sure
83     C we are trying to fill a valid diagnostic
84     DO n=1,nlists
85     DO m=1,nActive(n)
86     IF ( chardiag.EQ.flds(m,n) .AND. idiag(m,n).GT.0 ) THEN
87     ipt = idiag(m,n)
88     IF ( ndiag(ipt,bi,bj).GE.0 ) THEN
89     ndId = jdiag(m,n)
90     C- diagnostic is valid & active, do the filling:
91     CALL DIAGNOSTICS_FILL_FIELD(
92 jmc 1.2 I inpFld, inpFld, scaleFact, power, 0,
93     I ndId, ipt, kLev, nLevs,
94     I bibjFlg, biArg, bjArg, myThid )
95 jmc 1.1 ENDIF
96     ENDIF
97     ENDDO
98     ENDDO
99    
100     C---+----1----+----2----+----3----+----4----+----5----+----6----+----7-|--+----|
101     C-- Global/Regional Statistics :
102    
103     C Run through list of active statistics-diagnostics to make sure
104     C we are trying to compute & fill a valid diagnostic
105    
106     DO n=1,diagSt_nbLists
107     DO m=1,diagSt_nbActv(n)
108     IF ( chardiag.EQ.diagSt_Flds(m,n) .AND. iSdiag(m,n).GT.0 ) THEN
109     iSp = iSdiag(m,n)
110     IF ( qSdiag(0,0,iSp,bi,bj).GE.0. ) THEN
111     ndId = jSdiag(m,n)
112     C- Find list of regions to fill:
113     DO j=0,nRegions
114     region2fill(j) = diagSt_region(j,n)
115     ENDDO
116     C- if this diagnostics appears in several lists (with same freq)
117     C then add regions from other lists
118     DO l=1,diagSt_nbLists
119     DO k=1,diagSt_nbActv(l)
120     IF ( iSdiag(k,l).EQ.-iSp ) THEN
121     DO j=0,nRegions
122     region2fill(j) = MAX(region2fill(j),diagSt_region(j,l))
123     ENDDO
124     ENDIF
125     ENDDO
126     ENDDO
127     C- diagnostics is valid and Active: Now do the filling
128     CALL DIAGSTATS_FILL(
129 jmc 1.2 I inpFld, inpFld, scaleFact, power, 0,
130     I ndId, iSp, region2fill, kLev, nLevs,
131     I bibjFlg, biArg, bjArg, myThid )
132 jmc 1.1 ENDIF
133     ENDIF
134     ENDDO
135     ENDDO
136    
137     RETURN
138     END

  ViewVC Help
Powered by ViewVC 1.1.22