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

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

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


Revision 1.8 - (show annotations) (download)
Wed Oct 14 20:50:06 2009 UTC (14 years, 7 months ago) by heimbach
Branch: MAIN
Changes since 1.7: +5 -1 lines
Add seeding of adtotcost

1 C
2 C $Header: /u/gcmpack/MITgcm/pkg/cost/cost_dependent_init.F,v 1.7 2005/12/19 23:29:25 heimbach Exp $
3 C $Name: $
4
5 #include "PACKAGES_CONFIG.h"
6 #include "COST_CPPOPTIONS.h"
7
8
9 subroutine cost_dependent_init( mythid )
10
11 c ==================================================================
12 c SUBROUTINE cost_dependent_init
13 c ==================================================================
14 c
15 c o Initialise the variable ad cost function part.
16 c
17 c started: heimbach@mit.edu 17-Jan-2002
18 c
19 c ==================================================================
20 c SUBROUTINE cost_dependent_init
21 c ==================================================================
22
23 implicit none
24
25 c == global variables ==
26
27 #include "EEPARAMS.h"
28 #include "SIZE.h"
29
30 #include "cost.h"
31 #include "adcost.h"
32
33 c == routine arguments ==
34
35 integer mythid
36
37 c == local variables ==
38
39 integer i,j,k
40 integer bi,bj
41 integer itlo,ithi
42 integer jtlo,jthi
43
44 c == external functions ==
45
46 c == end of interface ==
47 jtlo = mybylo(mythid)
48 jthi = mybyhi(mythid)
49 itlo = mybxlo(mythid)
50 ithi = mybxhi(mythid)
51
52 fc = 0.0
53
54 #ifdef ALLOW_AUTODIFF
55
56 adfc = 1.0
57 #ifdef ALLOW_DIC
58 adtotcost = 1.0
59 #endif
60
61 do bj = jtlo,jthi
62 do bi = itlo,ithi
63 #ifdef ALLOW_COST_VECTOR
64 do i=1,sNx
65 objf_vector(i,bi,bj) = 0. _d 0
66 adobjf_vector(i,bi,bj) = 1. _d 0
67 end do
68 #endif
69 #ifdef ALLOW_COST_STATE_FINAL
70 do j=1,sNy
71 do i=1,sNx
72 do k=1,4*Nr
73 objf_state_final(i,j,bi,bj,k) = 0. _d 0
74 enddo
75 objf_state_final(i,j,bi,bj,4*Nr+1) = 0. _d 0
76 cph No init. of cost_state_final here,
77 cph because we need it in ADM*TLM
78 end do
79 end do
80 #endif
81 enddo
82 enddo
83
84 #endif /* ALLOW_AUTODIFF */
85
86 return
87 end
88

  ViewVC Help
Powered by ViewVC 1.1.22