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

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

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


Revision 1.9 - (hide annotations) (download)
Thu Oct 15 05:21:50 2009 UTC (14 years, 7 months ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint62c, checkpoint62a, checkpoint62e, checkpoint62d, checkpoint62, checkpoint62b, checkpoint61z, checkpoint61x, checkpoint61y
Changes since 1.8: +1 -4 lines
Revert to fc as dependent var also for dic

1 edhill 1.4 C
2 heimbach 1.9 C $Header: /u/gcmpack/MITgcm/pkg/cost/cost_dependent_init.F,v 1.8 2009/10/14 20:50:06 heimbach Exp $
3 heimbach 1.5 C $Name: $
4 heimbach 1.1
5 heimbach 1.5 #include "PACKAGES_CONFIG.h"
6 heimbach 1.1 #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 heimbach 1.5 #ifdef ALLOW_AUTODIFF
55 heimbach 1.1
56     adfc = 1.0
57 heimbach 1.8
58 heimbach 1.1 do bj = jtlo,jthi
59 heimbach 1.3 do bi = itlo,ithi
60 heimbach 1.1 #ifdef ALLOW_COST_VECTOR
61 heimbach 1.3 do i=1,sNx
62     objf_vector(i,bi,bj) = 0. _d 0
63     adobjf_vector(i,bi,bj) = 1. _d 0
64     end do
65     #endif
66     #ifdef ALLOW_COST_STATE_FINAL
67     do j=1,sNy
68 heimbach 1.1 do i=1,sNx
69 heimbach 1.7 do k=1,4*Nr
70     objf_state_final(i,j,bi,bj,k) = 0. _d 0
71     enddo
72     objf_state_final(i,j,bi,bj,4*Nr+1) = 0. _d 0
73 heimbach 1.3 cph No init. of cost_state_final here,
74     cph because we need it in ADM*TLM
75 heimbach 1.1 end do
76 heimbach 1.3 end do
77 heimbach 1.1 #endif
78     enddo
79     enddo
80    
81 heimbach 1.5 #endif /* ALLOW_AUTODIFF */
82 heimbach 1.1
83     return
84     end
85    

  ViewVC Help
Powered by ViewVC 1.1.22