/[MITgcm]/MITgcm/verification/hs94.1x64x5/code_ad/cost_test.F
ViewVC logotype

Contents of /MITgcm/verification/hs94.1x64x5/code_ad/cost_test.F

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


Revision 1.3 - (show annotations) (download)
Sun Aug 12 01:32:50 2012 UTC (11 years, 8 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64y, checkpoint64x, checkpoint64z, checkpoint64q, checkpoint64p, checkpoint64s, checkpoint64r, checkpoint64u, checkpoint64t, checkpoint64w, checkpoint64v, checkpoint64i, checkpoint64h, checkpoint64k, checkpoint64j, checkpoint64m, checkpoint64l, checkpoint64o, checkpoint64n, checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint63r, checkpoint63s, checkpoint64, checkpoint65, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65o, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, HEAD
Changes since 1.2: +17 -22 lines
- includes COST_OPTIONS.h (previously CPP_OPTIONS.h) like in pkg/ctrl version
- improve argument list description

1 C $Header: /u/gcmpack/MITgcm/verification/hs94.1x64x5/code_ad/cost_test.F,v 1.2 2007/10/09 02:36:42 jmc Exp $
2 C $Name: $
3
4 #include "COST_OPTIONS.h"
5
6 subroutine cost_test( myThid )
7 C *==========================================================*
8 C | subroutine cost_test
9 C | o this routine computes the cost function for the tiles
10 C | of this processor
11 C *==========================================================*
12 C | Notes
13 C *==========================================================*
14 IMPLICIT NONE
15
16 C == Global variables ===
17 #include "SIZE.h"
18 #include "EEPARAMS.h"
19 #include "PARAMS.h"
20 #include "DYNVARS.h"
21 #include "GRID.h"
22
23 #include "cost.h"
24
25 C == Routine arguments ==
26 C myThid - Thread number for this instance of the routine.
27 integer myThid
28
29 #ifdef ALLOW_COST_TEST
30 C == Local variables
31 integer bi, bj
32 _RL thetaRef
33 integer i, j, k
34 integer ig, jg
35 integer itlo,ithi
36 integer jtlo,jthi
37
38 jtlo = mybylo(mythid)
39 jthi = mybyhi(mythid)
40 itlo = mybxlo(mythid)
41 ithi = mybxhi(mythid)
42
43 iLocOut = 1
44 jLocOut = 32
45 kLocOut = 1
46
47 do bj = jtlo,jthi
48 do bi = itlo,ithi
49 objf_test(bi,bj)= 0. _d 0
50 enddo
51 enddo
52
53 ce some reference temperature
54 thetaRef = 24.0 _d 0
55 C-- Calculate mask for tracer cells (0 => land, 1 => water)
56 k=1
57
58 C-- Calculate cost function on tile of this instance
59 do bj = jtlo,jthi
60 do bi = itlo,ithi
61 c
62 do j=1,sNy
63 jg = myYGlobalLo-1+(bj-1)*sNy+j
64 do i=1,sNx
65 ig = myXGlobalLo-1+(bi-1)*sNx+i
66
67 if ((jg .gt.30) .and. (jg .lt.40)) then
68 objf_test(bi,bj) = objf_test(bi,bj) +
69 & theta(i,j,kLocOut,bi,bj)
70 write(*,'(a,F10.1,3(x,i4),a,4(x,i4))')
71 & 'objf_test ', objf_test(bi,bj),
72 & ig,jg,kLocOut,' TILE ',i,j,bi,bj
73 endif
74
75 enddo
76 enddo
77 c
78 objf_test(bi,bj) = objf_test(bi,bj) / 9. _d 0
79 c
80 enddo
81 enddo
82
83 #endif /* ALLOW_COST_TEST */
84
85 RETURN
86 END

  ViewVC Help
Powered by ViewVC 1.1.22