/[MITgcm]/MITgcm/pkg/cost/cost_test.F
ViewVC logotype

Contents of /MITgcm/pkg/cost/cost_test.F

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


Revision 1.11 - (show annotations) (download)
Sun Aug 12 01:38:02 2012 UTC (11 years, 9 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint65z, checkpoint65x, checkpoint65y, checkpoint65r, checkpoint65s, checkpoint65p, checkpoint65q, checkpoint65v, checkpoint65w, checkpoint65t, checkpoint65u, checkpoint65j, checkpoint65k, checkpoint65h, checkpoint65i, checkpoint65n, checkpoint65l, checkpoint65m, checkpoint65b, checkpoint65c, checkpoint65a, checkpoint65f, checkpoint65g, checkpoint65d, checkpoint65e, checkpoint64, checkpoint65, checkpoint66g, checkpoint66f, checkpoint66e, checkpoint66d, checkpoint66c, checkpoint66b, checkpoint66a, checkpoint66o, checkpoint66n, checkpoint66m, checkpoint66l, checkpoint66k, checkpoint66j, checkpoint66i, checkpoint66h, checkpoint63r, checkpoint63s, checkpoint65o, 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, HEAD
Changes since 1.10: +15 -18 lines
- improve argument list description (+ reduce differences with specific
 version in verification/*/code_ad dir)

1 C $Header: /u/gcmpack/MITgcm/pkg/cost/cost_test.F,v 1.10 2012/08/10 19:36:02 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 if ( useCubedSphereExchange) then
44 iLocOut = 7
45 jLocOut = 28
46 kLocOut = 1
47 else
48 iLocOut = 80
49 jLocOut = 30
50 kLocOut = 1
51 endif
52
53 ce some reference temperature
54 thetaRef = 24.0 _d 0
55
56 C-- Calculate mask for tracer cells (0 => land, 1 => water)
57 k=1
58
59 C-- Calculate cost function on tile of this instance
60 do bj = jtlo,jthi
61 do bi = itlo,ithi
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 #ifndef ALLOW_COST_TSQUARED
68 if ((ig .eq. iLocOut) .and. (jg .eq. jLocOut)) then
69 write(*,'(a,3(x,i4),a,4(x,i4))')
70 & 'COST ',ig,jg,kLocOut,' TILE ',i,j,bi,bj
71 objf_test(bi,bj) = theta(i,j,kLocOut,bi,bj)
72 cph(
73 print *, 'ph-cost ', ig, jg, kLocOut,
74 & theta(i,j,kLocOut,bi,bj)
75 cph)
76 endif
77 #else
78 objf_test(bi,bj) = objf_test(bi,bj) +
79 & theta(i,j,kLocOut,bi,bj)**2
80 #endif
81
82 enddo
83 enddo
84 enddo
85 enddo
86
87 #endif /* ALLOW_COST_TEST */
88
89 RETURN
90 END

  ViewVC Help
Powered by ViewVC 1.1.22