New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
limdia.F90 in NEMO/branches/NERC/dev_release-3.4_NEMOTAM_consolidated/NEMOGCM/NEMO/LIM_SRC_3 – NEMO

source: NEMO/branches/NERC/dev_release-3.4_NEMOTAM_consolidated/NEMOGCM/NEMO/LIM_SRC_3/limdia.F90 @ 11809

Last change on this file since 11809 was 3558, checked in by rblod, 11 years ago

Fix issues when using key_nosignedzeo, see ticket #996

  • Property svn:keywords set to Id
File size: 29.9 KB
Line 
1MODULE limdia
2   !!======================================================================
3   !!                       ***  MODULE limdia   ***
4   !!  LIM-3 sea ice model :   diagnostics of ice model
5   !!======================================================================
6   !! History :  3.2  ! 2007-01  (M. Vancoppenolle)  Code adapted from LIM-2
7   !!             -   ! 2008-03  (M. Vancoppenolle)  add lim_dia_init
8   !!----------------------------------------------------------------------
9#if defined key_lim3
10   !!----------------------------------------------------------------------
11   !!   'key_lim3'                                       LIM3 sea-ice model
12   !!----------------------------------------------------------------------
13   !!   lim_dia        : computation and output of the time evolution of keys variables
14   !!   lim_dia_init   : initialization and namelist read
15   !!----------------------------------------------------------------------
16   USE ice             ! LIM-3: sea-ice variable
17   USE par_ice         ! LIM-3: ice parameters
18   USE dom_ice         ! LIM-3: sea-ice domain
19   USE dom_oce         ! ocean domain
20   USE sbc_oce         ! surface boundary condition: ocean fields
21   USE daymod          ! model calendar
22   USE phycst          ! physical constant
23   USE in_out_manager  ! I/O manager
24   USE lib_mpp         ! MPP library
25   USE lib_fortran     ! Fortran utilities (allows no signed zero when 'key_nosignedzero' defined)
26   
27   IMPLICIT NONE
28   PRIVATE
29
30   PUBLIC lim_dia       ! called by ice_step
31
32   INTEGER, PUBLIC  ::   ntmoy   = 1   !: instantaneous values of ice evolution or averaging ntmoy
33   INTEGER, PUBLIC  ::   ninfo   = 1   !: frequency of ouputs on file ice_evolu in case of averaging
34
35   !                                              !!! Parameters for outputs to files "evolu"
36   INTEGER, PARAMETER ::   jpinfmx = 100           ! maximum number of key variables
37   INTEGER, PARAMETER ::   jpchinf = 5             ! ???
38   INTEGER, PARAMETER ::   jpchsep = jpchinf + 2   ! ???
39
40   INTEGER  ::   nfrinf  = 4         ! number of variables written in one line
41   INTEGER  ::   nferme              ! last time step at which the var. are written on file
42   INTEGER  ::   nvinfo              ! number of total variables
43   INTEGER  ::   nbvt                ! number of time variables
44   INTEGER  ::   naveg               ! number of step for accumulation before averaging
45   REAL(wp) ::   epsi06 = 1.e-6_wp   ! small number
46
47   CHARACTER(len= 8) ::   fmtinf = '1PE13.5 '   ! format of the output values 
48   CHARACTER(len=30) ::   fmtw                  ! formats
49   CHARACTER(len=30) ::   fmtr                  ! ???
50   CHARACTER(len=30) ::   fmtitr                ! ???
51
52   CHARACTER(len=jpchsep), DIMENSION(jpinfmx) ::   titvar   ! title of key variables
53
54   REAL(wp), DIMENSION(jpinfmx) ::   vinfom     ! temporary working space
55   REAL(wp), ALLOCATABLE, SAVE, DIMENSION(:,:) ::   aire       ! masked grid cell area
56
57   !! * Substitutions
58#  include "vectopt_loop_substitute.h90"
59   !!----------------------------------------------------------------------
60   !! NEMO/LIM3 3.3 , UCL - NEMO Consortium (2010)
61   !! $Id$
62   !! Software governed by the CeCILL licence     (NEMOGCM/NEMO_CeCILL.txt)
63   !!----------------------------------------------------------------------
64CONTAINS
65
66   SUBROUTINE lim_dia
67      !!--------------------------------------------------------------------
68      !!                  ***  ROUTINE lim_dia  ***
69      !!   
70      !! ** Purpose :   Computation and outputs on file ice.evolu
71      !!              the temporal evolution of some key variables
72      !!-------------------------------------------------------------------
73      INTEGER  ::   jv, ji, jj, jl   ! dummy loop indices
74      REAL(wp) ::   zshift_date      ! date from the minimum ice extent
75      REAL(wp) ::   zday, zday_min   ! current day, day of minimum extent
76      REAL(wp) ::   zafy, zamy       ! temporary area of fy and my ice
77      REAL(wp) ::   zindb
78      REAL(wp), DIMENSION(jpinfmx) ::   vinfor           ! temporary working space
79      !!-------------------------------------------------------------------
80
81      ! 0) date from the minimum of ice extent
82      !---------------------------------------
83      zday_min = 273._wp        ! zday_min = date of minimum extent, here September 30th
84      zday = REAL(numit-nit000,wp) * rdt_ice / ( 86400._wp * REAL(nn_fsbc,wp) )
85      !
86      IF( zday > zday_min ) THEN   ;   zshift_date  =  zday - zday_min
87      ELSE                         ;   zshift_date  =  zday - (365.0 - zday_min)
88      ENDIF
89
90      IF( numit == nstart )   CALL lim_dia_init   ! initialisation of ice_evolu file     
91
92      vinfor(1) = REAL(numit)       ! time diagnostics
93      vinfor(2) = nyear
94
95      DO jv = nbvt + 1, nvinfo      ! put everything to zero
96         vinfor(jv) = 0._wp
97      END DO
98
99      !!-------------------------------------------------------------------
100      !! 1) Northern hemisphere
101      !!-------------------------------------------------------------------
102      !! 1.1) Diagnostics independent on age
103      !!------------------------------------
104      DO jj = njeq, jpjm1
105         DO ji = fs_2, fs_jpim1   ! vector opt.
106            IF( tms(ji,jj) == 1 ) THEN
107               vinfor(3)  = vinfor(3)  + at_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !ice area
108               IF (at_i(ji,jj).GT.0.15) vinfor(5) = vinfor(5) + aire(ji,jj) * 1.e-12_wp !ice extent
109               vinfor(7)  = vinfor(7)  + vt_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !ice volume
110               vinfor(9)  = vinfor(9)  + vt_s(ji,jj)*aire(ji,jj) * 1.e-12_wp !snow volume
111               vinfor(15) = vinfor(15) + ot_i(ji,jj) *vt_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !mean age
112               vinfor(29) = vinfor(29) + smt_i(ji,jj)*vt_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !mean salinity
113               ! the computation of this diagnostic is not reliable
114               vinfor(31) = vinfor(31) + vt_i(ji,jj)*( u_ice(ji,jj)*u_ice(ji,jj) + & 
115                  v_ice(ji,jj)*v_ice(ji,jj) )*aire(ji,jj)/1.0e12 
116               vinfor(53) = vinfor(53) + emps(ji,jj)*aire(ji,jj) * 1.e-12_wp !salt flux
117               vinfor(55) = vinfor(55) + fsbri(ji,jj)*aire(ji,jj) * 1.e-12_wp !brine drainage flux
118               vinfor(57) = vinfor(57) + fseqv(ji,jj)*aire(ji,jj) * 1.e-12_wp !equivalent salt flux
119               vinfor(59) = vinfor(59) +(sst_m(ji,jj)+rt0)*at_i(ji,jj)*aire(ji,jj) * 1.e-12_wp  !SST
120               vinfor(61) = vinfor(61) + sss_m(ji,jj)*at_i(ji,jj)*aire(ji,jj) * 1.e-12_wp  !SSS
121               vinfor(65) = vinfor(65) + et_s(ji,jj)/1.0e9*aire(ji,jj) * 1.e-12_wp  ! snow temperature
122               vinfor(67) = vinfor(67) + et_i(ji,jj)/1.0e9*aire(ji,jj) * 1.e-12_wp       ! ice heat content
123               vinfor(69) = vinfor(69) + v_i(ji,jj,1)*aire(ji,jj) * 1.e-12_wp !ice volume
124               vinfor(71) = vinfor(71) + v_i(ji,jj,2)*aire(ji,jj) * 1.e-12_wp !ice volume
125               vinfor(73) = vinfor(73) + v_i(ji,jj,3)*aire(ji,jj) * 1.e-12_wp !ice volume
126               vinfor(75) = vinfor(75) + v_i(ji,jj,4)*aire(ji,jj) * 1.e-12_wp !ice volume
127               vinfor(77) = vinfor(77) + v_i(ji,jj,5)*aire(ji,jj) * 1.e-12_wp !ice volume
128               vinfor(79) = 0.0
129               vinfor(81) = vinfor(81) + emp(ji,jj)*aire(ji,jj) * 1.e-12_wp ! mass flux
130            ENDIF
131         END DO
132      END DO
133
134      DO jl = ice_cat_bounds(1,1), ice_cat_bounds(1,2)
135         DO jj = njeq, jpjm1
136            DO ji = fs_2, fs_jpim1   ! vector opt.
137               IF( tms(ji,jj) == 1 ) THEN
138                  vinfor(11) = vinfor(11) + v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !undef def ice volume
139               ENDIF
140            END DO
141         END DO
142      END DO
143
144      vinfor(13) = 0._wp
145
146      vinfor(15) = vinfor(15) / MAX(vinfor(7),epsi06) ! these have to be divided by total ice volume to have the
147      vinfor(29) = vinfor(29) / MAX(vinfor(7),epsi06) ! right value
148      vinfor(31) = SQRT( vinfor(31) / MAX( vinfor(7) , epsi06 ) )
149      vinfor(67) = vinfor(67) / MAX(vinfor(7),epsi06)
150
151      vinfor(53) = vinfor(53) / MAX(vinfor(5),epsi06) ! these have to be divided by total ice extent to have the
152      vinfor(55) = vinfor(55) / MAX(vinfor(5),epsi06) ! right value
153      vinfor(57) = vinfor(57) / MAX(vinfor(5),epsi06) !
154      vinfor(79) = vinfor(79) / MAX(vinfor(5),epsi06) !
155
156      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(3))) !
157      vinfor(59) = zindb*vinfor(59) / MAX(vinfor(3),epsi06) ! divide by ice area
158      vinfor(61) = zindb*vinfor(61) / MAX(vinfor(3),epsi06) !
159
160      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(9))) !
161      vinfor(65) = zindb*vinfor(65) / MAX(vinfor(9),epsi06) ! divide it by snow volume
162
163
164      DO jl = 1, jpl
165         DO jj = njeq, jpjm1
166            DO ji = fs_2, fs_jpim1   ! vector opt.
167               IF( tms(ji,jj) == 1 ) THEN
168                  vinfor(33) = vinfor(33) + d_v_i_trp(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !ice volume
169                  vinfor(35) = vinfor(35) + d_v_i_thd(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !ice volume
170               ENDIF
171            END DO
172         END DO
173      END DO
174
175      DO jj = njeq, jpjm1
176         DO ji = fs_2, fs_jpim1   ! vector opt.
177            IF( tms(ji,jj) == 1 ) THEN
178               vinfor(37) = vinfor(37) + diag_sni_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp !th growth rates
179               vinfor(39) = vinfor(39) + diag_lat_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp 
180               vinfor(41) = vinfor(41) + diag_bot_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp
181               vinfor(43) = vinfor(43) + diag_dyn_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp 
182               vinfor(45) = vinfor(45) + dv_dt_thd(ji,jj,5)*aire(ji,jj) * 1.e-12_wp
183               vinfor(47) = vinfor(47) + v_newice(ji,jj) *aire(ji,jj) * 1.e-12_wp / rdt_ice ! volume acc in OW
184            ENDIF
185         END DO
186      END DO
187
188      DO jl = 1, jpl
189         DO jj = njeq, jpjm1
190            DO ji = fs_2, fs_jpim1   ! vector opt.
191               IF( tms(ji,jj) == 1 ) THEN
192                  vinfor(63) = vinfor(63) + t_su(ji,jj,jl)*a_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp
193               ENDIF
194            END DO
195         END DO
196      END DO
197      vinfor(63) = vinfor(63) / MAX(vinfor(3),epsi06) ! these have to be divided by total ice area
198
199      !! 1.2) Diagnostics dependent on age
200      !!------------------------------------
201      DO jj = njeq, jpjm1
202         DO ji = fs_2, fs_jpim1   ! vector opt.
203            IF( tms(ji,jj) == 1 ) THEN
204               zafy = 0.0
205               zamy = 0.0
206               DO jl = 1, jpl
207                  IF ((o_i(ji,jj,jl) - zshift_date).LT.0.0) THEN
208                     vinfor(17) = vinfor(17) + a_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp ! FY ice area
209                     vinfor(25) = vinfor(25) + v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp ! FY ice volume
210                     vinfor(49) = vinfor(49) + sm_i(ji,jj,jl)*v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !FY ice salinity
211                     zafy = zafy + a_i(ji,jj,jl)
212                  ENDIF
213                  IF ((o_i(ji,jj,jl) - zshift_date).GT.0.0) THEN
214                     vinfor(19) = vinfor(19) + a_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp    ! MY ice area
215                     vinfor(27) = vinfor(27) + v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp ! MY ice volume
216                     vinfor(51) = vinfor(51) + sm_i(ji,jj,jl)*v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !MY ice salinity
217                     zamy = zamy + a_i(ji,jj,jl)
218                  ENDIF
219               END DO
220               IF ((at_i(ji,jj).GT.0.15).AND.(zafy.GT.zamy)) THEN
221                  vinfor(21) = vinfor(21) + aire(ji,jj) * 1.e-12_wp ! Seasonal ice extent
222               ENDIF
223               IF ((at_i(ji,jj).GT.0.15).AND.(zafy.LE.zamy)) THEN
224                  vinfor(23) = vinfor(23) + aire(ji,jj) * 1.e-12_wp ! Perennial ice extent
225               ENDIF
226            ENDIF
227         END DO
228      END DO
229      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(25))) !=0 if no multiyear ice 1 if yes
230      vinfor(49) = zindb*vinfor(49) / MAX(vinfor(25),epsi06)
231      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(27))) !=0 if no multiyear ice 1 if yes
232      vinfor(51) = zindb*vinfor(51) / MAX(vinfor(27),epsi06)
233
234      !! Fram Strait Export
235      !! 83 = area export
236      !! 84 = volume export
237      !! Fram strait in ORCA2 = 5 points
238      !! export = -v_ice*e1t*ddtb*at_i or -v_ice*e1t*ddtb*at_i*h_i
239      jj = 136 ! C grid
240      vinfor(83) = 0.0
241      vinfor(84) = 0.0
242      DO ji = 134, 138
243         vinfor(83) = vinfor(83) - v_ice(ji,jj) * & 
244            e1t(ji,jj)*at_i(ji,jj)*rdt_ice * 1.e-12_wp
245         vinfor(84) = vinfor(84) - v_ice(ji,jj) * & 
246            e1t(ji,jj)*vt_i(ji,jj)*rdt_ice * 1.e-12_wp
247      END DO
248
249      !!-------------------------------------------------------------------
250      !! 2) Southern hemisphere
251      !!-------------------------------------------------------------------
252      !! 2.1) Diagnostics independent on age
253      !!------------------------------------
254      DO jj = 2, njeqm1
255         DO ji = fs_2, fs_jpim1   ! vector opt.
256            IF( tms(ji,jj) == 1 ) THEN
257               vinfor(4)  = vinfor(4)  + at_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !ice area
258               IF (at_i(ji,jj).GT.0.15) vinfor(6) = vinfor(6) + aire(ji,jj) * 1.e-12_wp !ice extent
259               vinfor(8)  = vinfor(8)  + vt_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !ice volume
260               vinfor(10) = vinfor(10) + vt_s(ji,jj)*aire(ji,jj) * 1.e-12_wp !snow volume
261               vinfor(16) = vinfor(16) + ot_i(ji,jj)*vt_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !mean age
262               vinfor(30) = vinfor(30) + smt_i(ji,jj)*vt_i(ji,jj)*aire(ji,jj) * 1.e-12_wp !mean salinity
263               ! this diagnostic is not well computed (weighted by vol instead
264               ! of area)
265               vinfor(32) = vinfor(32) + vt_i(ji,jj)*( u_ice(ji,jj)*u_ice(ji,jj) + & 
266                  v_ice(ji,jj)*v_ice(ji,jj) )*aire(ji,jj)/1.0e12 !ice vel
267               vinfor(54) = vinfor(54) + at_i(ji,jj)*emps(ji,jj)*aire(ji,jj) * 1.e-12_wp ! Total salt flux
268               vinfor(56) = vinfor(56) + at_i(ji,jj)*fsbri(ji,jj)*aire(ji,jj) * 1.e-12_wp ! Brine drainage salt flux
269               vinfor(58) = vinfor(58) + at_i(ji,jj)*fseqv(ji,jj)*aire(ji,jj) * 1.e-12_wp ! Equivalent salt flux
270               vinfor(60) = vinfor(60) +(sst_m(ji,jj)+rt0)*at_i(ji,jj)*aire(ji,jj) * 1.e-12_wp  !SST
271               vinfor(62) = vinfor(62) + sss_m(ji,jj)*at_i(ji,jj)*aire(ji,jj) * 1.e-12_wp  !SSS
272               vinfor(66) = vinfor(66) + et_s(ji,jj)/1.0e9*aire(ji,jj) * 1.e-12_wp ! snow temperature
273               vinfor(68) = vinfor(68) + et_i(ji,jj)/1.0e9*aire(ji,jj) * 1.e-12_wp ! ice enthalpy
274               vinfor(70) = vinfor(70) + v_i(ji,jj,1)*aire(ji,jj) * 1.e-12_wp !ice volume
275               vinfor(72) = vinfor(72) + v_i(ji,jj,2)*aire(ji,jj) * 1.e-12_wp !ice volume
276               vinfor(74) = vinfor(74) + v_i(ji,jj,3)*aire(ji,jj) * 1.e-12_wp !ice volume
277               vinfor(76) = vinfor(76) + v_i(ji,jj,4)*aire(ji,jj) * 1.e-12_wp !ice volume
278               vinfor(78) = vinfor(78) + v_i(ji,jj,5)*aire(ji,jj) * 1.e-12_wp !ice volume
279               vinfor(80) = 0.0
280               vinfor(82) = vinfor(82) + emp(ji,jj)*aire(ji,jj) * 1.e-12_wp ! mass flux
281            ENDIF
282         END DO
283      END DO
284
285      DO jl = ice_cat_bounds(1,1), ice_cat_bounds(1,2)
286         DO jj = 2, njeqm1
287            DO ji = fs_2, fs_jpim1   ! vector opt.
288               vinfor(12) = vinfor(12) + v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !undef def ice volume
289            END DO
290         END DO
291      END DO
292
293      vinfor(14) = 0.0
294
295      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(8))) 
296      vinfor(16) = zindb * vinfor(16) / MAX(vinfor(8),epsi06) ! these have to be divided by ice vol
297      vinfor(30) = zindb * vinfor(30) / MAX(vinfor(8),epsi06) !
298      vinfor(32) = zindb * SQRT( vinfor(32) / MAX( vinfor(8) , epsi06 ) )
299      vinfor(68) = zindb * vinfor(68) / MAX(vinfor(8),epsi06) !
300
301      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(6))) 
302      vinfor(54) = zindb * vinfor(54) / MAX(vinfor(6),epsi06) ! these have to be divided by ice extt
303      vinfor(56) = zindb * vinfor(56) / MAX(vinfor(6),epsi06) !
304      vinfor(58) = zindb * vinfor(58) / MAX(vinfor(6),epsi06) !
305      vinfor(80) = zindb * vinfor(80) / MAX(vinfor(6),epsi06) !
306      !      vinfor(84) = vinfor(84) / vinfor(6) !
307
308      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(4))) !
309      vinfor(60) = zindb*vinfor(60) / ( MAX(vinfor(4), epsi06) ) ! divide by ice area
310      vinfor(62) = zindb*vinfor(62) / ( MAX(vinfor(4), epsi06) ) !
311
312      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(10))) !
313      vinfor(66) = zindb*vinfor(66) / MAX(vinfor(10),epsi06) ! divide it by snow volume
314
315      DO jl = 1, jpl
316         DO jj = 2, njeqm1
317            DO ji = fs_2, fs_jpim1   ! vector opt.
318               IF( tms(ji,jj) == 1 ) THEN
319                  vinfor(34) = vinfor(34) + d_v_i_trp(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !ice volume
320                  vinfor(36) = vinfor(36) + d_v_i_thd(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !ice volume
321               ENDIF
322            END DO
323         END DO
324      END DO
325
326      DO jj = 2, njeqm1
327         DO ji = fs_2, fs_jpim1   ! vector opt.
328            IF( tms(ji,jj) == 1 ) THEN
329               vinfor(38) = vinfor(38) + diag_sni_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp !th growth rates
330               vinfor(40) = vinfor(40) + diag_lat_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp 
331               vinfor(42) = vinfor(42) + diag_bot_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp
332               vinfor(44) = vinfor(44) + diag_dyn_gr(ji,jj)*aire(ji,jj) * 1.e-12_wp 
333               vinfor(46) = vinfor(46) + dv_dt_thd(ji,jj,5)*aire(ji,jj) * 1.e-12_wp
334               vinfor(48) = vinfor(48) + v_newice(ji,jj) *aire(ji,jj) * 1.e-12_wp / rdt_ice ! volume acc in OW
335            ENDIF
336         END DO
337      END DO
338
339      DO jl = 1, jpl
340         DO jj = 2, njeqm1
341            DO ji = fs_2, fs_jpim1   ! vector opt.
342               IF( tms(ji,jj) == 1 ) THEN
343                  vinfor(64) = vinfor(64) + t_su(ji,jj,jl)*a_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp
344               ENDIF
345            END DO
346         END DO
347      END DO
348      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(4))) !
349      vinfor(64) = zindb * vinfor(64) / MAX(vinfor(4),epsi06) ! divide by ice extt
350      !! 2.2) Diagnostics dependent on age
351      !!------------------------------------
352      DO jj = 2, njeqm1
353         DO ji = fs_2, fs_jpim1   ! vector opt.
354            IF( tms(ji,jj) == 1 ) THEN
355               zafy = 0._wp
356               zamy = 0._wp
357               DO jl = 1, jpl
358                  IF( (o_i(ji,jj,jl) - zshift_date) < 0._wp ) THEN
359                     vinfor(18) = vinfor(18) + a_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp ! FY ice area
360                     vinfor(26) = vinfor(26) + v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp ! FY ice volume
361                     zafy = zafy + a_i(ji,jj,jl)
362                     vinfor(50) = vinfor(50) + sm_i(ji,jj,jl)*v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !FY ice salinity
363                  ENDIF
364                  IF( (o_i(ji,jj,jl) - zshift_date) > 0._wp ) THEN
365                     vinfor(20) = vinfor(20) + a_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp    ! MY ice area
366                     vinfor(28) = vinfor(28) + v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp
367                     vinfor(52) = vinfor(52) + sm_i(ji,jj,jl)*v_i(ji,jj,jl)*aire(ji,jj) * 1.e-12_wp !FY ice salinity
368                     zamy = zamy + a_i(ji,jj,jl)
369                  ENDIF
370               END DO ! jl
371               IF ((at_i(ji,jj).GT.0.15).AND.(zafy.GT.zamy)) THEN
372                  vinfor(22) = vinfor(22) + aire(ji,jj) * 1.e-12_wp ! Seasonal ice extent
373               ENDIF
374               IF ((at_i(ji,jj).GT.0.15).AND.(zafy.LE.zamy)) THEN
375                  vinfor(24) = vinfor(24) + aire(ji,jj) * 1.e-12_wp ! Perennial ice extent
376               ENDIF
377            ENDIF ! tms
378         END DO ! jj
379      END DO ! ji
380      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(26))) !=0 if no multiyear ice 1 if yes
381      vinfor(50) = zindb*vinfor(50) / MAX(vinfor(26),epsi06)
382      zindb      = 1.0 - MAX(0.0,SIGN(1.0,-vinfor(28))) !=0 if no multiyear ice 1 if yes
383      vinfor(52) = zindb*vinfor(52) / MAX(vinfor(28),epsi06)
384
385      !  Accumulation before averaging
386      DO jv = 1, nvinfo
387         vinfom(jv) = vinfom(jv) + vinfor(jv)
388      END DO
389      naveg = naveg + 1 
390
391      ! oututs on file ice_evolu   
392      !MV      IF( MOD( numit , ninfo ) == 0 ) THEN
393      WRITE(numevo_ice,fmtw) ( titvar(jv), vinfom(jv)/naveg, jv = 1, nvinfo )
394      naveg = 0
395      DO jv = 1, nvinfo
396         vinfom(jv) = 0._wp
397      END DO
398      !MV      ENDIF
399      !
400   END SUBROUTINE lim_dia
401
402
403   SUBROUTINE lim_dia_init
404      !!-------------------------------------------------------------------
405      !!                  ***  ROUTINE lim_dia_init  ***
406      !!             
407      !! ** Purpose : Preparation of the file ice_evolu for the output of
408      !!      the temporal evolution of key variables
409      !!
410      !! ** input   : Namelist namicedia
411      !!-------------------------------------------------------------------
412      INTEGER  ::   jv    ! dummy loop indice
413      INTEGER  ::   ierr, ntot , ndeb , irecl   ! local integers
414      REAL(wp) ::   zxx0, zxx1    ! local scalars
415      CHARACTER(len=jpchinf) ::   titinf
416      CHARACTER(len=50)      ::   clname
417      !!
418      NAMELIST/namicedia/fmtinf, nfrinf, ninfo, ntmoy
419      !!-------------------------------------------------------------------
420      !
421      REWIND( numnam_ice )             ! read namicedia namelist
422      READ  ( numnam_ice, namicedia )
423      !
424      IF(lwp) THEN                     ! control print
425         WRITE(numout,*)
426         WRITE(numout,*) 'lim_dia_init : ice parameters for ice diagnostics '
427         WRITE(numout,*) '~~~~~~~~~~~~'
428         WRITE(numout,*) '   format of the output values                                 fmtinf = ', fmtinf
429         WRITE(numout,*) '   number of variables written in one line                     nfrinf = ', nfrinf 
430         WRITE(numout,*) '   Instantaneous values of ice evolution or averaging          ntmoy  = ', ntmoy
431         WRITE(numout,*) '   frequency of ouputs on file ice_evolu in case of averaging  ninfo  = ', ninfo
432      ENDIF
433
434      ALLOCATE( aire(jpi,jpj) , STAT=ierr )      ! masked grid cell area (interior domain only)
435      IF( lk_mpp    )   CALL mpp_sum( ierr )
436      IF( ierr /= 0 )   CALL ctl_stop( 'STOP', 'lim_dia_init_2 : unable to allocate arrays' )
437      aire(:,:) = area(:,:) * tms(:,:) * tmask_i(:,:)
438
439      ! Titles of ice key variables :
440      titvar(1) = 'NoIt'  ! iteration number
441      titvar(2) = 'T yr'  ! time step in years
442      nbvt      = 2       ! number of time variables
443
444      titvar(3) = 'AI_N'  ! sea ice area in the northern Hemisp.(10^12 km2)
445      titvar(4) = 'AI_S'  ! sea ice area in the southern Hemisp.(10^12 km2)
446      titvar(5) = 'EI_N'  ! sea ice extent (15%) in the northern Hemisp.(10^12 km2)
447      titvar(6) = 'EI_S'  ! sea ice extent (15%) in the southern Hemisp.(10^12 km2)
448      titvar(7) = 'VI_N'  ! sea ice volume in the northern Hemisp.(10^3 km3)
449      titvar(8) = 'VI_S'  ! sea ice volume in the southern Hemisp.(10^3 km3)
450      titvar(9) = 'VS_N'  ! snow volume over sea ice in the northern Hemisp.(10^3 km3)
451      titvar(10)= 'VS_S'  ! snow volume over sea ice in the northern Hemisp.(10^3 km3)
452      titvar(11)= 'VuIN'  ! undeformed sea ice volume in the northern Hemisp.(10^3 km3)
453      titvar(12)= 'VuIS'  ! undeformed sea ice volume in the southern Hemisp.(10^3 km3)
454      titvar(13)= 'VdIN'  ! deformed sea ice volume in the northern Hemisp.(10^3 km3)
455      titvar(14)= 'VdIS'  ! deformed sea ice volume in the southern Hemisp.(10^3 km3)
456      titvar(15)= 'OI_N'  ! sea ice mean age in the northern Hemisp.(years)
457      titvar(16)= 'OI_S'  ! sea ice mean age in the southern Hemisp.(years)
458      titvar(17)= 'AFYN'  ! total FY ice area northern Hemisp.(10^12 km2)
459      titvar(18)= 'AFYS'  ! total FY ice area southern Hemisp.(10^12 km2)
460      titvar(19)= 'AMYN'  ! total MY ice area northern Hemisp.(10^12 km2)
461      titvar(20)= 'AMYS'  ! total MY ice area southern Hemisp.(10^12 km2)
462      titvar(21)= 'EFYN'  ! total FY ice extent northern Hemisp.(10^12 km2) (with more 50% FY ice)
463      titvar(22)= 'EFYS'  ! total FY ice extent southern Hemisp.(10^12 km2) (with more 50% FY ice)
464      titvar(23)= 'EMYN'  ! total MY ice extent northern Hemisp.(10^12 km2) (with more 50% MY ice)
465      titvar(24)= 'EMYS'  ! total MY ice extent southern Hemisp.(10^12 km2) (with more 50% MY ice)
466      titvar(25)= 'VFYN'  ! total undeformed FY ice volume northern Hemisp.(10^3 km3)
467      titvar(26)= 'VFYS'  ! total undeformed FY ice volume southern Hemisp.(10^3 km3)
468      titvar(27)= 'VMYN'  ! total undeformed MY ice volume northern Hemisp.(10^3 km3)
469      titvar(28)= 'VMYS'  ! total undeformed MY ice volume southern Hemisp.(10^3 km3)
470      titvar(29)= 'IS_N'  ! sea ice mean salinity in the northern hemisphere (ppt) 
471      titvar(30)= 'IS_S'  ! sea ice mean salinity in the southern hemisphere (ppt) 
472      titvar(31)= 'IVeN'  ! sea ice mean velocity in the northern hemisphere (m/s)
473      titvar(32)= 'IVeS'  ! sea ice mean velocity in the southern hemisphere (m/s)
474      titvar(33)= 'DVDN'  ! variation of sea ice volume due to dynamics in the northern hemisphere
475      titvar(34)= 'DVDS'  ! variation of sea ice volume due to dynamics in the southern hemisphere
476      titvar(35)= 'DVTN'  ! variation of sea ice volume due to thermo in the   northern hemisphere
477      titvar(36)= 'DVTS'  ! variation of sea ice volume due to thermo in the   southern hemisphere
478      titvar(37)= 'TG1N'  ! thermodynamic vertical growth rate in the northern hemisphere, cat 1 
479      titvar(38)= 'TG1S'  ! thermodynamic vertical growth rate in the souhtern hemisphere, cat 1 
480      titvar(39)= 'TG2N'  ! thermodynamic vertical growth rate in the northern hemisphere, cat 2 
481      titvar(40)= 'TG2S'  ! thermodynamic vertical growth rate in the souhtern hemisphere, cat 2 
482      titvar(41)= 'TG3N'  ! thermodynamic vertical growth rate in the northern hemisphere, cat 3 
483      titvar(42)= 'TG3S'  ! thermodynamic vertical growth rate in the souhtern hemisphere, cat 3 
484      titvar(43)= 'TG4N'  ! thermodynamic vertical growth rate in the northern hemisphere, cat 4 
485      titvar(44)= 'TG4S'  ! thermodynamic vertical growth rate in the souhtern hemisphere, cat 4 
486      titvar(45)= 'TG5N'  ! thermodynamic vertical growth rate in the northern hemisphere, cat 5 
487      titvar(46)= 'TG5S'  ! thermodynamic vertical growth rate in the souhtern hemisphere, cat 5 
488      titvar(47)= 'LA_N'  ! lateral accretion growth rate, northern hemisphere
489      titvar(48)= 'LA_S'  ! lateral accretion growth rate, southern hemisphere
490      titvar(49)= 'SF_N'  ! Salinity FY, NH
491      titvar(50)= 'SF_S'  ! Salinity FY, SH
492      titvar(51)= 'SF_N'  ! Salinity MY, NH
493      titvar(52)= 'SF_S'  ! Salinity MY, SH
494      titvar(53)= 'Fs_N'  ! Total salt flux NH
495      titvar(54)= 'Fs_S'  ! Total salt flux SH
496      titvar(55)= 'FsbN'  ! Salt - brine drainage flux NH
497      titvar(56)= 'FsbS'  ! Salt - brine drainage flux SH
498      titvar(57)= 'FseN'  ! Salt - Equivalent salt flux NH
499      titvar(58)= 'FseS'  ! Salt - Equivalent salt flux SH
500      titvar(59)= 'SSTN'  ! SST, NH
501      titvar(60)= 'SSTS'  ! SST, SH
502      titvar(61)= 'SSSN'  ! SSS, NH
503      titvar(62)= 'SSSS'  ! SSS, SH
504      titvar(63)= 'TsuN'  ! Tsu, NH
505      titvar(64)= 'TsuS'  ! Tsu, SH
506      titvar(65)= 'TsnN'  ! Tsn, NH
507      titvar(66)= 'TsnS'  ! Tsn, SH
508      titvar(67)= 'ei_N'  ! ei, NH
509      titvar(68)= 'ei_S'  ! ei, SH
510      titvar(69)= 'vi1N'  ! vi1, NH
511      titvar(70)= 'vi1S'  ! vi1, SH
512      titvar(71)= 'vi2N'  ! vi2, NH
513      titvar(72)= 'vi2S'  ! vi2, SH
514      titvar(73)= 'vi3N'  ! vi3, NH
515      titvar(74)= 'vi3S'  ! vi3, SH
516      titvar(75)= 'vi4N'  ! vi4, NH
517      titvar(76)= 'vi4S'  ! vi4, SH
518      titvar(77)= 'vi5N'  ! vi5, NH
519      titvar(78)= 'vi5S'  ! vi5, SH
520      titvar(79)= 'vi6N'  ! vi6, NH
521      titvar(80)= 'vi6S'  ! vi6, SH
522      titvar(81)= 'fmaN'  ! mass flux in the ocean, NH
523      titvar(82)= 'fmaS'  ! mass flux in the ocean, SH
524      titvar(83)= 'AFSE'  ! Fram Strait Area export
525      titvar(84)= 'VFSE'  ! Fram Strait Volume export
526      nvinfo = 84
527
528      ! Definition et Ecriture de l'entete : nombre d'enregistrements
529      ndeb   = ( nstart - 1 ) / ninfo
530      IF( nstart == 1 ) ndeb = -1
531
532      nferme = ( nstart - 1 + nitrun) / ninfo
533      ntot   = nferme - ndeb
534      ndeb   = ninfo * ( 1 + ndeb )
535      nferme = ninfo * nferme
536
537      ! definition of formats
538      WRITE( fmtw  , '(A,I3,A2,I1,A)' )  '(', nfrinf, '(A', jpchsep, ','//fmtinf//'))'
539      WRITE( fmtr  , '(A,I3,A,I1,A)'  )  '(', nfrinf, '(', jpchsep, 'X,'//fmtinf//'))'
540      WRITE( fmtitr, '(A,I3,A,I1,A)'  )  '(', nvinfo, 'A', jpchinf, ')'
541
542      ! opening  "ice_evolu" file
543      IF( lk_mpp ) THEN   ;   WRITE(clname,FMT="('ice.evolu_',I4.4)") narea-1
544      ELSE                ;   clname = 'ice.evolu'
545      END IF
546      irecl = ( jpchinf + 1 ) * nvinfo 
547      CALL ctl_opn( numevo_ice, clname, 'UNKNOWN', 'FORMATTED', 'SEQUENTIAL',    &
548         &         irecl, numout, lwp, narea )
549
550      !- ecriture de 2 lignes d''entete :
551      WRITE(numevo_ice,1000) fmtr, fmtw, fmtitr, nvinfo, ntot, 0, nfrinf
552      zxx0 = 0.001 * REAL(ninfo)
553      zxx1 = 0.001 * REAL(ndeb)
554      WRITE(numevo_ice,1111) REAL(jpchinf), 0., zxx1, zxx0, 0., 0., 0
555
556      !- ecriture de 2 lignes de titre :
557      WRITE(numevo_ice,'(A,I8,A,I8,A,I5)')                 &
558         'Evolution chronologique - Experience '//cexper   &
559         //'   de', ndeb, ' a', nferme, ' pas', ninfo
560      WRITE(numevo_ice,fmtitr) ( titvar(jv), jv = 1, nvinfo )
561
562      !--preparation de "titvar" pour l''ecriture parmi les valeurs numeriques :
563      DO jv = 2 , nvinfo
564         titinf     = titvar(jv)(:jpchinf)
565         titvar(jv) = '  '//titinf
566      END DO
567
568      !--Initialisation of the arrays for the accumulation
569      DO jv = 1, nvinfo
570         vinfom(jv) = 0._wp
571      END DO
572      naveg = 0
573
5741000  FORMAT( 3(A20),4(1x,I6) )
5751111  FORMAT( 3(F7.1,1X,F7.3,1X),I3,A ) 
576      !
577   END SUBROUTINE lim_dia_init
578
579#else
580   !!----------------------------------------------------------------------
581   !!   Default option :                             NO LIM-3 sea-ice model
582   !!----------------------------------------------------------------------
583CONTAINS
584   SUBROUTINE lim_dia         ! Empty routine
585   END SUBROUTINE lim_dia
586#endif
587
588   !!======================================================================
589END MODULE limdia
Note: See TracBrowser for help on using the repository browser.