/[MITgcm]/MITgcm/optim/optim_write_control.F
ViewVC logotype

Annotation of /MITgcm/optim/optim_write_control.F

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


Revision 1.1.2.1 - (hide annotations) (download)
Tue Feb 5 20:34:35 2002 UTC (22 years, 2 months ago) by heimbach
Branch: ecco-branch
CVS Tags: ecco_c50_e32, ecco_c50_e33, ecco_c50_e30, ecco_c50_e31, ecco_c51_e34d, ecco_c51_e34e, ecco_c51_e34f, ecco_c51_e34g, ecco_c51_e34a, ecco_c51_e34b, ecco_c51_e34c, icebear5, icebear4, icebear3, icebear2, ecco_c50_e29, ecco_c50_e28, ecco_c44_e19, ecco_c44_e18, ecco_c44_e17, ecco_c44_e16, ecco_c50_e33a, ecco_c51_e34, ecco_ice2, ecco_ice1, ecco_c44_e25, ecco_c44_e22, ecco_c44_e23, ecco_c44_e20, ecco_c44_e21, ecco_c44_e26, ecco_c44_e27, ecco_c44_e24, ecco-branch-mod1, ecco-branch-mod2, ecco-branch-mod3, ecco-branch-mod4, ecco-branch-mod5
Branch point for: c24_e25_ice, icebear
Changes since 1.1: +57 -0 lines
o Updating adjoint/makefile to ECCO code
o Adding optim and lsopt for line search optimization.
o Adding verif. experiments for ECCO
Code will be tagged ecco-branch-mod1.

1 heimbach 1.1.2.1
2     subroutine optim_write_control(
3     I nv,
4     I xx
5     & )
6    
7     c ==================================================================
8     c SUBROUTINE optim_write_control
9     c ==================================================================
10     c
11     c o Interface routine for writing the next estimate of the control
12     c vector that is to be used by the ocean state estimation program.
13     c
14     c started: Christian Eckert eckert@mit.edu 12-Apr-2000
15     c
16     c changed: Patrick Heimbach heimbach@mit.edu 19-Jun-2000
17     c - finished, revised and debugged
18     c
19     c ==================================================================
20     c SUBROUTINE optim_write_control
21     c ==================================================================
22    
23     implicit none
24    
25     c == global variables ==
26    
27     #include "EEPARAMS.h"
28     #include "SIZE.h"
29    
30     #include "ecco.h"
31     #include "ctrl.h"
32     #include "optim.h"
33    
34     c == routine arguments ==
35    
36     integer nv
37     _RL xx(nv)
38    
39     c == local variables ==
40    
41     _RL ff
42    
43     logical lheaderonly
44    
45     c == end of interface ==
46    
47     ff = -9999.
48    
49     print *,'pathei: writing ', nv,' sized control to file',
50     & ctrlname
51    
52     lheaderonly = .false.
53     call optim_writedata( nv, ctrlname, lheaderonly, ff, xx )
54    
55     return
56     end
57    

  ViewVC Help
Powered by ViewVC 1.1.22