/[MITgcm]/MITgcm/pkg/atm2d/init_sumvars.F
ViewVC logotype

Contents of /MITgcm/pkg/atm2d/init_sumvars.F

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


Revision 1.1 - (show annotations) (download)
Wed Sep 6 15:32:39 2006 UTC (17 years, 10 months ago) by jscott
Branch: MAIN
CVS Tags: checkpoint58u_post, checkpoint58w_post, checkpoint58r_post, checkpoint58x_post, checkpoint58t_post, checkpoint58q_post, checkpoint59e, checkpoint59d, checkpoint59g, checkpoint59f, checkpoint59a, checkpoint59c, checkpoint59b, checkpoint59h, checkpoint59, checkpoint58y_post, checkpoint58v_post, checkpoint58s_post, checkpoint58p_post
add atm2d package

1 #include "ctrparam.h"
2 #include "ATM2D_OPTIONS.h"
3
4 C !INTERFACE:
5 SUBROUTINE INIT_SUMVARS( myThid)
6 C *==========================================================*
7 C | Initialize all the output variables from the atmos and |
8 c | seaice models that are accumulated and passed to the ocn.|
9 C *==========================================================*
10 IMPLICIT NONE
11
12 #include "ATMSIZE.h"
13 #include "SIZE.h"
14 #include "EEPARAMS.h"
15 #include "ATM2D_VARS.h"
16
17 C !INPUT/OUTPUT PARAMETERS:
18 C === Routine arguments ===
19 C myThid - Thread no. that called this routine.
20 INTEGER myThid
21
22 C LOCAL VARIABLES:
23 INTEGER i,j
24
25 DO i=1-OLx,sNx+OLx
26 DO j=1-OLy,sNy+OLy
27
28 sum_runoff(i,j)= 0. _d 0
29 sum_precip(i,j)= 0. _d 0
30 sum_evap(i,j)= 0. _d 0
31 sum_qnet(i,j)= 0. _d 0
32 sum_fu(i,j)= 0. _d 0
33 sum_fv(i,j)= 0. _d 0
34 sum_wspeed(i,j)= 0. _d 0
35 sum_solarnet(i,j)= 0. _d 0
36 sum_slp(i,j)= 0. _d 0
37 sum_pCO2(i,j)= 0. _d 0
38 sum_prcIce(i,j)= 0. _d 0
39 sum_snowPrc(i,j)= 0. _d 0
40 sum_evapIce(i,j)= 0. _d 0
41 sum_sHeat(i,j)= 0. _d 0
42 sum_flxCnB(i,j)= 0. _d 0
43
44 ENDDO
45 ENDDO
46
47 RETURN
48 END

  ViewVC Help
Powered by ViewVC 1.1.22