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

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

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


Revision 1.2 - (show annotations) (download)
Mon May 14 21:42:41 2001 UTC (23 years ago) by heimbach
Branch: MAIN
CVS Tags: checkpoint46b_post, checkpoint46n_post, checkpoint51k_post, checkpoint47j_post, checkpoint40pre1, checkpoint48d_pre, checkpoint44b_post, checkpoint51j_post, branch-exfmods-tag, checkpoint47e_post, checkpoint43a-release1mods, checkpoint44h_pre, checkpoint47i_post, release1_p12, release1_p13, release1_p10, release1_p11, release1_p16, release1_p17, release1_p14, release1_p15, checkpoint47f_post, checkpoint40pre9, checkpoint47c_post, checkpoint50e_post, release1_p13_pre, checkpoint50c_post, checkpoint46i_post, checkpoint51n_pre, checkpoint47d_post, checkpoint44f_pre, checkpoint47a_post, checkpoint46f_post, checkpoint46d_pre, release1_beta1, checkpoint48e_post, checkpoint46e_post, checkpoint48d_post, checkpoint50c_pre, release1-branch_tutorials, checkpoint46c_post, checkpoint44g_post, branchpoint-genmake2, checkpoint44h_post, checkpoint46l_post, checkpoint46k_post, checkpoint46e_pre, checkpoint48f_post, checkpoint45d_post, checkpoint51r_post, checkpoint51o_pre, checkpoint46j_pre, checkpoint45b_post, checkpoint51i_post, checkpoint40pre7, checkpoint48c_post, chkpt44a_pre, release1-branch-end, release1_final_v1, checkpoint51e_post, checkpoint51b_post, checkpoint51l_pre, release1_p12_pre, checkpoint47d_pre, checkpoint47, checkpoint44, checkpoint45, checkpoint48, checkpoint49, checkpoint44f_post, checkpoint47b_post, checkpoint40pre2, checkpoint40pre5, checkpoint51l_post, checkpoint40pre6, checkpoint48i_post, checkpoint51o_post, checkpoint40pre8, checkpoint46l_pre, checkpoint51f_pre, release1_b1, checkpoint48h_post, checkpoint51q_post, checkpoint50d_pre, chkpt44d_post, checkpoint42, release1_p9, checkpoint46h_pre, checkpoint51, checkpoint50, checkpoint47h_post, release1_p8, checkpoint50d_post, checkpoint46g_pre, release1_p2, release1_p3, release1_p4, checkpoint51b_pre, release1_p6, release1_p7, checkpoint46a_post, checkpoint47g_post, chkpt44a_post, checkpoint44b_pre, checkpoint44e_post, release1_p1, checkpoint46m_post, checkpoint46j_post, checkpoint40pre4, checkpoint51h_pre, checkpoint46a_pre, checkpoint40pre3, checkpoint50g_post, checkpoint45c_post, checkpoint50b_pre, release1_p5, checkpoint44e_pre, checkpoint51g_post, checkpoint46b_pre, checkpoint51f_post, checkpoint46d_post, checkpoint48b_post, checkpoint50b_post, checkpoint46g_post, checkpoint45a_post, checkpoint51c_post, checkpoint50f_post, checkpoint50a_post, checkpoint46c_pre, checkpoint50f_pre, checkpoint43, checkpoint51d_post, checkpoint40, checkpoint48c_pre, release1-branch_branchpoint, checkpoint41, checkpoint46, checkpoint51t_post, checkpoint50h_post, checkpoint51a_post, checkpoint39, checkpoint46h_post, checkpoint50e_pre, checkpoint50i_post, checkpoint51p_post, checkpoint51n_post, release1_chkpt44d_post, checkpoint48g_post, checkpoint51i_pre, chkpt44c_pre, checkpoint48a_post, checkpoint51m_post, checkpoint51s_post, chkpt44c_post
Branch point for: ecco-branch, branch-genmake2, release1, branch-exfmods-curt, release1_coupled, branch-nonh, tg2-branch, release1_final, checkpoint51n_branch, release1-branch, release1_50yr
Changes since 1.1: +1 -174 lines
Bug fix.

1 C $Header: /u/gcmpack/models/MITgcmUV/pkg/cost/cost_summary.F,v 1.1 2001/03/25 22:33:54 heimbach Exp $
2
3 #include "COST_CPPOPTIONS.h"
4
5
6 subroutine cost_Summary(
7 I mythid
8 & )
9
10 c ==================================================================
11 c SUBROUTINE cost_Summary
12 c ==================================================================
13 c
14 c o Summarize the cost function related parts of the ECCO release.
15 c
16 c started: Christian Eckert eckert@mit.edu 30-Jun-1999
17 c
18 c changed: Christian Eckert eckert@mit.edu 25-Feb-2000
19 c
20 c - Restructured the code in order to create a package
21 c for the MITgcmUV.
22 c
23 c ==================================================================
24 c SUBROUTINE cost_Summary
25 c ==================================================================
26
27 implicit none
28
29 c == global variables ==
30
31 #include "EEPARAMS.h"
32 #include "SIZE.h"
33
34 #include "cost.h"
35
36 c == routine arguments ==
37
38 integer mythid
39
40 c == local variables ==
41
42 integer il
43
44 character*(max_len_mbuf) msgbuf
45
46 c == external ==
47
48 integer ilnblnk
49 external ilnblnk
50
51 c == end of interface ==
52
53 write(msgbuf,'(a)')
54 &' '
55 call print_message( msgbuf, standardmessageunit,
56 & SQUEEZE_RIGHT , mythid)
57 write(msgbuf,'(a)')
58 &'// ======================================================='
59 call print_message( msgbuf, standardmessageunit,
60 & SQUEEZE_RIGHT , mythid)
61 write(msgbuf,'(a)')
62 &'// ECCO cost function configuration >>> START <<<'
63 call print_message( msgbuf, standardmessageunit,
64 & SQUEEZE_RIGHT , mythid)
65 write(msgbuf,'(a)')
66 &'// ======================================================='
67 call print_message( msgbuf, standardmessageunit,
68 & SQUEEZE_RIGHT , mythid)
69 write(msgbuf,'(a)')
70 &' '
71 call print_message( msgbuf, standardmessageunit,
72 & SQUEEZE_RIGHT , mythid)
73
74 write(msgbuf,'(a)')
75 &' Multipliers for the indivdual cost function contributions:'
76 call print_message( msgbuf, standardmessageunit,
77 & SQUEEZE_RIGHT , mythid)
78 write(msgbuf,'(a)')
79 &' '
80 call print_message( msgbuf, standardmessageunit,
81 & SQUEEZE_RIGHT , mythid)
82 write(msgbuf,'(a,e10.3)')
83 &' Net heat flux: ',mult_hq
84 call print_message( msgbuf, standardmessageunit,
85 & SQUEEZE_RIGHT , mythid)
86 write(msgbuf,'(a,e10.3)')
87 &' Salt flux: ',mult_hs
88 call print_message( msgbuf, standardmessageunit,
89 & SQUEEZE_RIGHT , mythid)
90 write(msgbuf,'(a,e10.3)')
91 &' Zonal wind stress: ',mult_tauu
92 call print_message( msgbuf, standardmessageunit,
93 & SQUEEZE_RIGHT , mythid)
94 write(msgbuf,'(a,e10.3)')
95 &' Meridional wind stress: ',mult_tauv
96 call print_message( msgbuf, standardmessageunit,
97 & SQUEEZE_RIGHT , mythid)
98 write(msgbuf,'(a,e10.3)')
99 &' Mean sea surface height: ',mult_hmean
100 call print_message( msgbuf, standardmessageunit,
101 & SQUEEZE_RIGHT , mythid)
102 write(msgbuf,'(a,e10.3)')
103 &' Sea surface height anomalies: ',mult_h
104 call print_message( msgbuf, standardmessageunit,
105 & SQUEEZE_RIGHT , mythid)
106 write(msgbuf,'(a,e10.3)')
107 &' Temperature (3d): ',mult_temp
108 call print_message( msgbuf, standardmessageunit,
109 & SQUEEZE_RIGHT , mythid)
110 write(msgbuf,'(a,e10.3)')
111 &' Salinity (3d): ',mult_salt
112 call print_message( msgbuf, standardmessageunit,
113 & SQUEEZE_RIGHT , mythid)
114 write(msgbuf,'(a,e10.3)')
115 &' Sea surface temperature: ',mult_sst
116 call print_message( msgbuf, standardmessageunit,
117 & SQUEEZE_RIGHT , mythid)
118 write(msgbuf,'(a,e10.3)')
119 &' CTD temperature: ',mult_ctdt
120 call print_message( msgbuf, standardmessageunit,
121 & SQUEEZE_RIGHT , mythid)
122 write(msgbuf,'(a,e10.3)')
123 &' CTD salinity: ',mult_ctds
124 call print_message( msgbuf, standardmessageunit,
125 & SQUEEZE_RIGHT , mythid)
126
127 return
128 end
129

  ViewVC Help
Powered by ViewVC 1.1.22