/[MITgcm]/MITgcm/pkg/thsice/THSICE_TAVE.h
ViewVC logotype

Contents of /MITgcm/pkg/thsice/THSICE_TAVE.h

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


Revision 1.4 - (show annotations) (download)
Tue Dec 29 23:07:43 2009 UTC (14 years, 4 months ago) by jmc
Branch: MAIN
CVS Tags: checkpoint64a, checkpoint64c, checkpoint64b, checkpoint64e, checkpoint64d, checkpoint64g, checkpoint64f, checkpoint63p, checkpoint63q, checkpoint63r, checkpoint63s, checkpoint63l, checkpoint63m, checkpoint63n, checkpoint63o, checkpoint63h, checkpoint63i, checkpoint63j, checkpoint63k, checkpoint63d, checkpoint63e, checkpoint63f, checkpoint63g, checkpoint63a, checkpoint63b, checkpoint63c, checkpoint64, checkpoint63, checkpoint62c, checkpoint62b, checkpoint62a, checkpoint62g, checkpoint62f, checkpoint62e, checkpoint62d, checkpoint62k, checkpoint62j, checkpoint62i, checkpoint62h, checkpoint62o, checkpoint62n, checkpoint62m, checkpoint62l, checkpoint62s, checkpoint62r, checkpoint62q, checkpoint62p, checkpoint62w, checkpoint62v, checkpoint62u, checkpoint62t, checkpoint62z, checkpoint62y, checkpoint62x
Changes since 1.3: +4 -7 lines
File MIME type: text/plain
time-ave: use simpler (no level index) cumulative-time counter

1 C $Header: /u/gcmpack/MITgcm/pkg/thsice/THSICE_TAVE.h,v 1.3 2005/06/24 04:36:54 edhill Exp $
2 C $Name: $
3
4 CBOP
5 C !ROUTINE: THSICE_TAVE.h
6 C !INTERFACE:
7 C include "THSICE_TAVE.h"
8 C !DESCRIPTION:
9 C \bv
10 C *==========================================================*
11 C | THSICE_TAVE.h
12 C | o Header for Therm-SeaICE time-average diagnostic
13 C *==========================================================*
14 C \ev
15 CEOP
16
17 #ifdef ALLOW_THSICE
18 #ifdef ALLOW_TIMEAVE
19
20 C-- COMMON /THSICE_TAVE_VARS/ Time average THermodynamic-SeaICE variables
21 C ice_timeAve :: cumulated time [s]
22 C ice_fract_Ave :: cumulated Ice fraction [0-1]
23 C ice_iceH_Ave :: cumulated Ice thickness [m]
24 C ice_snowH_Ave :: cumulated Snow thickness [m]
25 C ice_Tsrf_Ave :: cumulated surface Temperature [oC]
26 C ice_Tice1_Ave :: cumulated 1srt level Temp. [oC]
27 C ice_Tice2_Ave :: cumulated 2nd level Temp. [oC]
28 C ice_snowPr_Ave :: cumulated snow precipitation (+=down) [kg/m2/s]
29 C ice_flx2oc_Ave :: cumulated heat flux out of the ocean (+=up) [W/m2]
30 C ice_frw2oc_Ave :: cumulated fresh-water flux out off the ocean (E-P) [m/s]
31 C ice_salFx_Ave :: cumulated salt flux out of the ocean (+=up) [psu.kg/m2]
32 C ice_flxAtm_Ave :: cumulated net heat flux from Atmosphere (+=down) [W/m2]
33 C ice_frwAtm_Ave :: cumulated fresh-water flux from Atmos. (+=up) [kg/m2/s]
34 C ice_albedo_Ave :: cumulated sea-ice albedo [0-1]
35 C ICE_tMxL_Ave :: cumulated ocean mixed-layer Temp. [oC]
36 C ICE_sMxL_Ave :: cumulated ocean mixed-layer salinity [psu]
37
38 _RL ice_timeAve(nSx,nSy)
39 _RL ice_fract_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
40 _RL ice_iceH_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
41 _RL ice_snowH_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
42 _RL ice_Tsrf_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
43 _RL ice_Tice1_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
44 _RL ice_Tice2_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
45 _RL ice_snowPr_Ave(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
46 _RL ice_flx2oc_Ave(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
47 _RL ice_frw2oc_Ave(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
48 _RL ice_salFx_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
49 _RL ice_flxAtm_Ave(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
50 _RL ice_frwAtm_Ave(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
51 _RL ice_albedo_Ave(1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
52 _RL ICE_tMxL_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
53 _RL ICE_sMxL_Ave (1-OLx:sNx+OLx,1-OLy:sNy+OLy,nSx,nSy)
54
55 COMMON /THSICE_TAVE_ARRAYS/ ice_timeAve,
56 & ice_fract_Ave, ice_iceH_Ave,
57 & ice_snowH_Ave, ice_Tsrf_Ave,
58 & ice_Tice1_Ave, ice_Tice2_Ave, ice_snowPr_Ave,
59 & ice_flx2oc_Ave,ice_frw2oc_Ave,ice_salFx_Ave,
60 & ice_flxAtm_Ave,ice_frwAtm_Ave,ice_albedo_Ave,
61 & ICE_tMxL_Ave, ICE_sMxL_Ave
62
63 #endif /* ALLOW_TIMEAVE */
64 #endif /* ALLOW_THSICE */
65
66 CEH3 ;;; Local Variables: ***
67 CEH3 ;;; mode:fortran ***
68 CEH3 ;;; End: ***

  ViewVC Help
Powered by ViewVC 1.1.22