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

Annotation of /MITgcm/pkg/cost/cost_tracer.F

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


Revision 1.12 - (hide annotations) (download)
Fri Aug 10 19:36: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.11: +2 -2 lines
rename COST_CPPOPTIONS.h to COST_OPTIONS.h

1 jmc 1.12 C $Header: /u/gcmpack/MITgcm/pkg/cost/cost_tracer.F,v 1.11 2011/08/06 19:08:58 heimbach Exp $
2 jmc 1.5 C $Name: $
3 heimbach 1.1
4 jmc 1.12 #include "COST_OPTIONS.h"
5 heimbach 1.1
6     subroutine cost_tracer( bi, bj, myThid )
7     C /==========================================================\
8     C | subroutine cost_tracer |
9     C | o this routine computes the cost function for the tiles |
10     C | of this processor |
11     C |==========================================================|
12     C | |
13     C | Notes |
14     C | ===== |
15     C \==========================================================/
16     IMPLICIT NONE
17    
18     C == Global variables ===
19     #include "SIZE.h"
20     #include "EEPARAMS.h"
21     #include "PARAMS.h"
22     #include "DYNVARS.h"
23     #include "GRID.h"
24 heimbach 1.4 #ifdef ALLOW_COST_TRACER
25 heimbach 1.6 # ifdef ALLOW_PTRACERS
26 jmc 1.5 # include "PTRACERS_SIZE.h"
27 jmc 1.9 # include "PTRACERS_PARAMS.h"
28 jmc 1.8 # include "PTRACERS_FIELDS.h"
29 heimbach 1.4 # endif
30     #endif
31 heimbach 1.1 #include "cost.h"
32    
33     C == Routine arguments ==
34     C myThid - Thread number for this instance of the routine.
35     integer bi, bj
36     integer myThid
37    
38     #ifdef ALLOW_COST_TRACER
39     C == Local variables
40     _RL thetaRef
41     _RL locfc
42    
43     integer i, j, k
44     integer ig, jg
45 heimbach 1.10
46 heimbach 1.1 ce some reference temperature
47     thetaRef = 24.0D0
48    
49     locfc = 0. _d 0
50    
51     k=1
52     DO j=1,sNy
53     DO i=1,sNx
54 heimbach 1.6 #ifdef ALLOW_PTRACERS
55 heimbach 1.10 locfc = locfc + hFacC(i,j,k,bi,bj)*
56 heimbach 1.4 & lambdaTr1ClimRelax*ptracer(i,j,k,bi,bj,1)*
57 jmc 1.7 & rA(i,j,bi,bj)*drF(k)*dTtracerLev(k)
58 heimbach 1.4 #endif
59 heimbach 1.1 ENDDO
60     ENDDO
61    
62     objf_tracer(bi,bj) = objf_tracer(bi,bj) + locfc
63    
64     #endif /* ALLOW_COST_TRACER */
65    
66     RETURN
67     END

  ViewVC Help
Powered by ViewVC 1.1.22