/[MITgcm]/MITgcm/pkg/admtlm/admtlm_map.F
ViewVC logotype

Contents of /MITgcm/pkg/admtlm/admtlm_map.F

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


Revision 1.5 - (show annotations) (download)
Sun Aug 12 18:29:25 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.4: +2 -2 lines
new option-file for this package, included in all *.F files

1 C $Header: /u/gcmpack/MITgcm/pkg/admtlm/admtlm_map.F,v 1.4 2007/10/08 23:45:51 jmc Exp $
2 C $Name: $
3
4 #include "ADMTLM_OPTIONS.h"
5
6 subroutine admtlm_map( myThid )
7 C /==========================================================\
8 C | subroutine admtlm_map |
9 C | o This routine assigns final T,S to cost function |
10 C \==========================================================/
11 implicit none
12
13 C == Global variables ===
14 #include "SIZE.h"
15 #include "EEPARAMS.h"
16 #include "PARAMS.h"
17 #ifdef ALLOW_ADMTLM
18 # include "adcost.h"
19 # include "g_cost.h"
20 #endif
21
22 C ======== Routine arguments ======================
23 C myThid - Thread number for this instance of the routine.
24 integer myThid
25
26 #ifdef ALLOW_ADMTLM
27 C ========= Local variables =========================
28 integer i, j, k
29 integer bi, bj
30
31 DO bj=myByLo(myThid),myByHi(myThid)
32 DO bi=myBxLo(myThid),myBxHi(myThid)
33 DO j=1,sNy
34 DO i=1,sNx
35 DO k=1,4*Nr
36 adobjf_state_final(i,j,bi,bj,k) =
37 & g_objf_state_final(i,j,bi,bj,k)
38 END DO
39 adobjf_state_final(i,j,bi,bj,4*Nr+1) =
40 & g_objf_state_final(i,j,bi,bj,4*Nr+1)
41 END DO
42 END DO
43 END DO
44 END DO
45
46 #endif
47
48 end

  ViewVC Help
Powered by ViewVC 1.1.22