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.
std_plot_all_last_year_5D.pro in branches/2013/dev_MERGE_2013/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts – NEMO

source: branches/2013/dev_MERGE_2013/NEMOGCM/CONFIG/ORCA2_LIM/IDL_scripts/std_plot_all_last_year_5D.pro @ 4516

Last change on this file since 4516 was 4516, checked in by flavoni, 10 years ago

small fix in plots, see ticket #724

File size: 25.7 KB
RevLine 
[4320]1pro std_plot_all_last_year_5D, doplot = doplot, _extra = ex
2
3  compile_opt idl2, strictarrsubs
4
5@common
6@std_common
7                                ; scripts for nemo v3_2 and v3_3
8
9;; script for max MLD, output 5 days
10
11  PRINT, ''
12  PRINT, '  ############################################'
13  PRINT, ''
14  PRINT, '                    LAUNCH of std_plots_last_year_5D'
15  PRINT, ''
16  PRINT, '  ############################################'
17  PRINT, ''
18;
19  std_iodir_data    = isadirectory(getenv('DIR_DATA'),     title = 'path of data in NetCdf format')
20  std_iodir_climato = isadirectory(getenv('DIR_CLIMATO'),  title = 'path of climatological data')
21  std_iodir_mask    = isadirectory(getenv('DIR_MASK'),     title = 'path of mask files (ex: subbasins)')
22; meshmask
23  std_file_mesh = isafile(getenv('FILE_MESH_MASK'),        title = 'mesh_mask', iodir = std_iodir_mask)
24  std_file_msksub = isafile(getenv('FILE_MASK_SUBDOMAIN'), title = 'sub-bassin masks', iodir = std_iodir_mask)
25
26; climatologies
27  std_file_Levitus_T =  isafile(getenv('FILE_TEMP_3D'),    title = 'Levitus_T', iodir = std_iodir_climato)
28  std_file_Levitus_S =  isafile(getenv('FILE_SAL_3D'),     title = 'Levitus_S', iodir = std_iodir_climato)
29  std_file_reynolds  =  isafile(getenv('FILE_SST'),        title = 'Reynolds', iodir = std_iodir_climato)
30  std_file_oaflux    =  isafile(getenv('FILE_FLUX'),       title = 'oaflux', iodir = std_iodir_climato)
31  std_file_mld       =  isafile(getenv('FILE_MLD'),        title = 'Mixed layer depth', iodir = std_iodir_climato)
32  std_file_ice       =  isafile(getenv('FILE_ICE'),        title = 'ICE', iodir = std_iodir_climato)
33  std_file_snow_arc  =  isafile(getenv('FILE_SNOW_ARC'),   title = 'SNOW_ARC', iodir = std_iodir_climato)
34  std_file_snow_ant  =  isafile(getenv('FILE_SNOW_ANT'),   title = 'SNOW_ANT', iodir = std_iodir_climato)
35
36  IF strlowcase(getenv('FILE_GEOHEAT')) EQ 'no' THEN std_file_geoheat = 'no' $
37  ELSE std_file_geoheat =  isafile(getenv('FILE_GEOHEAT'), title = 'Geothermal heating', iodir = std_iodir_climato)
38;
39  allrec =  1 - keyword_set(long(getenv('READ_ONLY_FIRST_RECORD')))
40; Output run experience1
41  std_file1_T     = isafile(getenv('FILE1_T'), title = 'exp1 grid T input file', iodir = std_iodir_data)
42  std_file1_U     = isafile(getenv('FILE1_U'), title = 'exp1 grid U input file', iodir = std_iodir_data)
43  std_file1_V     = isafile(getenv('FILE1_V'), title = 'exp1 grid V input file', iodir = std_iodir_data)
44  std_file1_I     = isafile(getenv('FILE1_I'), title = 'exp1 ice    input file', iodir = std_iodir_data)
45 
46; Output run experience2
47  std_file2_T     = isafile(getenv('FILE2_T'), title = 'exp2 grid T input file', iodir = std_iodir_data)
48  std_file2_U     = isafile(getenv('FILE2_U'), title = 'exp2 grid U input file', iodir = std_iodir_data)
49  std_file2_V     = isafile(getenv('FILE2_V'), title = 'exp2 grid V input file', iodir = std_iodir_data)
50  std_file2_I     = isafile(getenv('FILE2_I'), title = 'exp2 ice    input file', iodir = std_iodir_data)
51
52  PRINT, ''
53  PRINT, '  std_iodir_data : ' + std_iodir_data
54  PRINT, '  std_file1T : ' + std_file1_T
55  PRINT, '  std_file1U : ' + std_file1_U
56  PRINT, '  std_file1V : ' + std_file1_V
57;  PRINT, ' std_file1W : ' + std_file1_W
58  PRINT, '  std_file2I : ' + std_file1_I
59  PRINT, '  std_file2T : ' + std_file2_T
60  PRINT, '  std_file2U : ' + std_file2_U
61  PRINT, '  std_file2V : ' + std_file2_V
62;  PRINT, ' std_file2W : ' + std_file2_W
63  PRINT, '  std_file2I : ' + std_file2_I
64  PRINT, ''
65
66;#########################################################################
67;##########################  Load Grids   ################################
68;#########################################################################
69; load the grid
70  load_orca, std_file_mesh 
71; reading variables
72  masknp = read_ncdf('tmaskutil', file = std_file_mesh, /nostruct, /cont_nofill)
73;#########################################################################
74;############################  Read Data  ################################
75;#########################################################################
76;
77  allrec =  1; - keyword_set(long(getenv('READ_ONLY_FIRST_RECORD')))
78;
79;;; 3D ;;;
80; temperature
81  T1 = read_ncdf(getenv('VAR1_T'), allrecords = allrec, direc = 't', filename = std_file1_T )
82  IF std_file2_T NE std_file1_T THEN BEGIN
83    T2 = read_ncdf(getenv('VAR2_T'), allrecords = allrec, direc = 't', filename = std_file2_T )
84  ENDIF ELSE T2 = {arr:-1}
85  TLev = read_ncdf(getenv('VAR_TEMP_3D'), filename = std_file_Levitus_T )
86  TRey = read_ncdf(getenv('VAR_SST'), filename = std_file_reynolds )
87
88; salinity
89  S1 = read_ncdf(getenv('VAR1_S'), allrecords = allrec, direc = 't', filename = std_file1_T )
90  IF std_file2_T NE std_file1_T THEN BEGIN
91    S2 = read_ncdf(getenv('VAR2_S'), allrecords = allrec, direc = 't', filename = std_file2_T )
92  ENDIF ELSE S2 = {arr:-1}
93  SLev = read_ncdf(getenv('VAR_SAL_3D'), filename = std_file_Levitus_S )
94
95;;; 2D ;;;
96; Net Downward heat flux
97  Q1 = read_ncdf(getenv('VAR1_QNET'), allrecords = allrec, direc = 't', filename = std_file1_T )
98  IF std_file2_T NE std_file1_T THEN BEGIN
99    Q2 = read_ncdf(getenv('VAR2_QNET'), allrecords = allrec, direc = 't', filename = std_file2_T )
100  ENDIF ELSE Q2 = {arr:-1}
101; Geothermal heating
102  IF std_file_geoheat EQ 'no' THEN geo = {arr:float(getenv('VAR_GEOHEAT'))} $
103  ELSE geo = read_ncdf(getenv('VAR_GEOHEAT'), filename =  std_file_geoheat )
104  geo = geo.arr*1.e-3          ; convert into W/m2
105;climatology
106  QNET = read_ncdf(getenv('VAR_FLUX'), filename = std_file_oaflux )
107
108; erp (evaporation damping)
109  ERP1 = read_ncdf(getenv('VAR1_ERP'), allrecords = allrec, direc = 't', filename = std_file1_T )
110  ERP1 = {arr:ERP1.arr * 86400., unit:'mm/day', grid:'T'}
111  IF std_file2_T NE std_file1_T THEN BEGIN
112    ERP2 = read_ncdf(getenv('VAR2_ERP'), allrecords = allrec, direc = 't', filename = std_file2_T )
113    ERP2 = {arr:ERP2.arr * 86400., unit:'mm/day', grid:'T'}
114  ENDIF ELSE ERP2 = {arr:-1}
115
116; emp (evaporation minus precipitation)
117  EMP1 = read_ncdf(getenv('VAR1_EMP'), allrecords = allrec, direc = 't', filename = std_file1_T )
118  EMP1 = {arr:EMP1.arr * 86400., unit:'mm/day', grid:'T'}
119  IF std_file2_T NE std_file1_T THEN BEGIN
120    EMP2 = read_ncdf(getenv('VAR2_EMP'), allrecords = allrec, direc = 't', filename = std_file2_T )
121    EMP2 = {arr:EMP2.arr * 86400., unit:'mm/day', grid:'T'}
122  ENDIF ELSE EMP2 = {arr:-1}
123 
124  ;mixed layer depth
125  ;; nyear=jpt/73
126  MLD_1 = read_ncdf(getenv('VAR1_MLD'), allrecords = allrec, filename = std_file1_T )
127  caldat, time, mm
128  march = where(mm EQ 3, cnt)
129  MLD_march_1 = max(MLD_1.arr[*,*,march], dim=3)
130  MLD_march_1 = {arr: MLD_march_1, unit: MLD_1.unit}
131  sept = where(mm EQ 9, cnt)
132  MLD_sept_1 = max(MLD_1.arr[*,*,sept], dim=3)
133  MLD_sept_1 = {arr: MLD_sept_1, unit: MLD_1.unit}
134  MLD_1 = {arr: max(MLD_1.arr[*,*,*], dim=3), unit: MLD_1.unit}
135  IF std_file2_T NE std_file1_T THEN BEGIN
136    MLD_2 = read_ncdf(getenv('VAR2_MLD'), allrecords = allrec, filename = std_file2_T ) ; 10 m
137    caldat, time, mm
138    march = where(mm EQ 3, cnt)
139    MLD_march_2 = max(MLD_2.arr[*,*,march], dim=3)
140    MLD_march_2 = {arr: MLD_march_2, unit: MLD_2.unit}
141    sept = where(mm EQ 9, cnt)
142    MLD_sept_2 = max(MLD_2.arr[*,*,sept], dim=3)
143    MLD_sept_2 = {arr:MLD_sept_2, unit: MLD_2.unit}
144    MLD_2 = {arr: max(MLD_2.arr[*,*,*], dim=3), unit: MLD_2.unit}
145  ENDIF ELSE BEGIN
146    MLD_2 = {arr:-1}
147    MLD_march_2 = {arr:-1}
148    MLD_sept_2 = {arr:-1}
149  ENDELSE
150 
151  ;climatology
152  MLD = read_ncdf(getenv('VAR_MLD'), filename = std_file_mld )
153; if monthly climatology
154;  MLD = {arr: max(MLD.arr[*,*,*], dim=3), unit: MLD.unit}
155
156; velocities
157  U1 = read_ncdf(getenv('VAR1_U'), allrecords = allrec, direc = 't', filename = std_file1_U )
158  IF strlowcase(getenv('VAR1_U')) EQ 'uocetr_eff' THEN BEGIN
159    U1.arr = U1.arr / e3u_3d(/e2) * umask()
160    U1.unit = 'm/s'
161  ENDIF
162  IF std_file2_U NE std_file1_U THEN BEGIN
163    U2 = read_ncdf(getenv('VAR2_U'), allrecords = allrec, direc = 't', filename = std_file2_U )
164    IF strlowcase(getenv('VAR2_U')) EQ 'uocetr_eff' THEN BEGIN
165      U2.arr = U2.arr / e3u_3d(/e2) * umask()
166      U2.unit = 'm/s'
167    ENDIF
168  ENDIF ELSE U2 = {arr:-1}
169;
170  V1 = read_ncdf(getenv('VAR1_V'), allrecords = allrec, direc = 't', filename = std_file1_V )
171  IF strlowcase(getenv('VAR1_V')) EQ 'vocetr_eff' THEN BEGIN
172    V1.arr = V1.arr / e3v_3d(/e1) * vmask()
173    V1.unit = 'm/s'
174  ENDIF
175  IF std_file2_V NE std_file1_V THEN BEGIN
176    V2 = read_ncdf(getenv('VAR2_V'), allrecords = allrec, direc = 't', filename = std_file2_V )
177    IF strlowcase(getenv('VAR2_V')) EQ 'vocetr_eff' THEN BEGIN
178      V2.arr = V2.arr / e3v_3d(/e1) * vmask()
179      V2.unit = 'm/s'
180    ENDIF
181  ENDIF ELSE V2 = {arr:-1}
182
183; ice
184  Ithi_1 = read_ncdf(getenv('VAR1_Ithick'), allrecords = allrec, filename = std_file1_I )
185  caldat, time, mm
186  april = where(mm EQ 4, cnt)
187  Ithi_april_1 = {arr:1./float(cnt) * total(reform(Ithi_1.arr[*, *, temporary(april)],nxt,nyt,cnt), 3), unit:Ithi_1.unit}
188  sept = where(mm EQ 9, cnt)
189  Ithi_sept_1 = {arr:1./float(cnt) * total(reform(Ithi_1.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Ithi_1.unit}
190  undefine, Ithi_1
191;
192  IF std_file2_I NE std_file1_I THEN BEGIN
193     Ithi_2 = read_ncdf(getenv('VAR2_Ithick'), allrecords = allrec, filename = std_file2_I )
194     caldat, time, mm
195     april = where(mm EQ 4, cnt)
196     Ithi_april_2 = {arr:1./float(cnt) * total(reform(Ithi_2.arr[*, *, temporary(april)],nxt,nyt,cnt), 3), unit:Ithi_2.unit}
197     sept = where(mm EQ 9, cnt)
198     Ithi_sept_2 = {arr:1./float(cnt) * total(reform(Ithi_2.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Ithi_2.unit}
199     undefine, Ithi_2
200  ENDIF ELSE BEGIN
201     Ithi_april_2 = {arr:-1}
202     Ithi_sept_2 = {arr:-1}
203  ENDELSE
204;
[4514]205  Iage_1 = read_ncdf(getenv('VAR1_Iage'), allrecords = allrec, filename = std_file1_I )
206  caldat, time, mm
207  march = where(mm EQ 3, cnt)
208  Iage_march_1 = {arr:1./float(cnt) * total(reform(Iage_1.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Iage_1.unit}
209  sept = where(mm EQ 9, cnt)
210  Iage_sept_1 = {arr:1./float(cnt) * total(reform(Iage_1.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Iage_1.unit}
211  undefine, Iage_1
212;
213  IF std_file2_I NE std_file1_I THEN BEGIN
214     Iage_2 = read_ncdf(getenv('VAR2_Iage'), allrecords = allrec, filename = std_file2_I )
215     caldat, time, mm
216     march = where(mm EQ 3, cnt)
[4516]217     Iage_march_2 = {arr:1./float(cnt) * total(reform(Iage_2.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Iage_2.unit}
[4514]218     sept = where(mm EQ 9, cnt)
219     Iage_sept_2 = {arr:1./float(cnt) * total(reform(Iage_2.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Iage_2.unit}
220     undefine, Iage_2
221  ENDIF ELSE BEGIN
222     Iage_march_2 = {arr:-1}
223     Iage_sept_2 = {arr:-1}
224  ENDELSE
225;
[4320]226  Ifra_1 = read_ncdf(getenv('VAR1_Ifrac'), allrecords = allrec, filename = std_file1_I )
227  ;; help, Ifra_1.arr, jpi,jpj
228  caldat, time, mm
229  march = where(mm EQ 3, cnt)
230  Ifra_march_1 = {arr:1./float(cnt) * total(reform(Ifra_1.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Ifra_1.unit}
231  sept = where(mm EQ 9, cnt)
232  Ifra_sept_1 = {arr:1./float(cnt) * total(reform(Ifra_1.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Ifra_1.unit}
233  undefine, Ifra_1
234;
235  IF std_file2_I NE std_file1_I THEN BEGIN
236    Ifra_2 = read_ncdf(getenv('VAR2_Ifrac'), allrecords = allrec, filename = std_file2_I )
237    caldat, time, mm
238    march = where(mm EQ 3, cnt)
239    Ifra_march_2 = {arr:1./float(cnt) * total(reform(Ifra_2.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Ifra_2.unit}
240    sept = where(mm EQ 9, cnt)
241    Ifra_sept_2 = {arr:1./float(cnt) * total(reform(Ifra_2.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Ifra_2.unit}
242    undefine, Ifra_2
243  ENDIF ELSE BEGIN
244    Ifra_march_2 = {arr:-1}
245    Ifra_sept_2 = {arr:-1}
246  ENDELSE
247;
[4514]248   Isnow_1 = read_ncdf(getenv('VAR1_Isnow'), allrecords = allrec, filename = std_file1_I )
249   caldat, time, mm
250   march = where(mm EQ 3, cnt)
251   Isnow_march_1 = {arr:1./float(cnt) * total(reform(Isnow_1.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Isnow_1.unit}
252   sept = where(mm EQ 9, cnt)
253   Isnow_sept_1 = {arr:1./float(cnt) * total(reform(Isnow_1.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Isnow_1.unit}
254   ;undefine, Isnow_1
255 ;
256   IF std_file2_I NE std_file1_I THEN BEGIN
257     Isnow_2 = read_ncdf(getenv('VAR2_Isnow'), allrecords = allrec, filename = std_file2_I )
258     caldat, time, mm
259     march = where(mm EQ 3, cnt)
260     Isnow_march_2 = {arr:1./float(cnt) * total(reform(Isnow_2.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Isnow_2.unit}
261     sept = where(mm EQ 9, cnt)
262     Isnow_sept_2 = {arr:1./float(cnt) * total(reform(Isnow_2.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Isnow_2.unit}
263   ;  undefine, Isnow_2
264   ENDIF ELSE BEGIN
265     Isnow_march_2 = {arr:-1}
266     Isnow_sept_2 = {arr:-1}
267   ENDELSE
[4320]268;
[4514]269   Isal_1 = read_ncdf(getenv('VAR1_Isal'), allrecords = allrec, filename = std_file1_I )
270   Ifra_1 = read_ncdf(getenv('VAR1_Ifrac'), allrecords = allrec, filename = std_file1_I )
271   msk = Ifra_1.arr gt 0.15 ; remove 0.15% for observations
272   help, Ifra_1
273   help, mask
274   caldat, time, mm
275   march = where(mm EQ 3, cnt)
276   febr = where(mm EQ 2, cnt)
277   ;SF  Isal_march_1 = {arr:1./float(cnt) * total(reform(Isal_1.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Isal_1.unit}
278   Isal_1.arr = Isal_1.arr * msk
279   help, Isal_1
280   Isal_march_1 = {arr:1./float(cnt) * total(reform(Isal_1.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Isal_1.unit}
281   help, Isal_march_1
282   Isal_febr_1 = {arr:1./float(cnt) * total(reform(Isal_1.arr[*, *, temporary(febr)],nxt,nyt,cnt), 3), unit:Isal_1.unit}
283   sept = where(mm EQ 9, cnt)
284   Isal_sept_1 = {arr:1./float(cnt) * total(reform(Isal_1.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Isal_1.unit}
285   ;undefine, Isal_1
286 ;
287   Isal_2 = read_ncdf(getenv('VAR2_Isal'), allrecords = allrec, filename = std_file2_I )
288   Ifra_2 = read_ncdf(getenv('VAR2_Ifrac'), allrecords = allrec, filename = std_file2_I )
289   msk = Ifra_2.arr gt 0.15 ; remove 0.15% for observations
290   IF std_file2_I NE std_file1_I THEN BEGIN
291     Isal_2 = read_ncdf(getenv('VAR2_Isal'), allrecords = allrec, filename = std_file2_I )
292     Isal_2.arr = Isal_2.arr * msk
293     caldat, time, mm
294     march = where(mm EQ 3, cnt)
295     febr = where(mm EQ 2, cnt)
296     Isal_march_2 = {arr:1./float(cnt) * total(reform(Isal_2.arr[*, *, temporary(march)],nxt,nyt,cnt), 3), unit:Isal_2.unit}
297     Isal_febr_2 = {arr:1./float(cnt) * total(reform(Isal_2.arr[*, *, temporary(febr)],nxt,nyt,cnt), 3), unit:Isal_2.unit}
298     sept = where(mm EQ 9, cnt)
299     Isal_sept_2 = {arr:1./float(cnt) * total(reform(Isal_2.arr[*, *, temporary(sept)],nxt,nyt,cnt), 3), unit:Isal_2.unit}
300   ;  undefine, Isal_2
301   ENDIF ELSE BEGIN
302     Isal_febr_2 = {arr:-1}
303     Isal_march_2 = {arr:-1}
304     Isal_sept_2 = {arr:-1}
305   ENDELSE
306;
[4320]307  jpt = 1
308;
309; shorter file names for legends...
310;
311  std_file1_T = file_basename(std_file1_T,'.nc')
312  std_file1_T = (strsplit(std_file1_T,'_grid_T',/extract,/regex))[0]
313  std_file2_T = file_basename(std_file2_T,'.nc')
314  std_file2_T = (strsplit(std_file2_T,'_grid_T',/extract,/regex))[0]
315  std_file1_U = file_basename(std_file1_U,'.nc')
316  std_file1_U = (strsplit(std_file1_U,'_grid_U',/extract,/regex))[0]
317  std_file2_U = file_basename(std_file2_U,'.nc')
318  std_file2_U = (strsplit(std_file2_U,'_grid_U',/extract,/regex))[0]
319  std_file1_V = file_basename(std_file1_V,'.nc')
320  std_file1_V = (strsplit(std_file1_V,'_grid_V',/extract,/regex))[0]
321  std_file2_V = file_basename(std_file2_V,'.nc')
322  std_file2_V = (strsplit(std_file2_V,'_grid_V',/extract,/regex))[0]
323  std_file1_I = file_basename(std_file1_I,'.nc')
324  std_file1_I = (strsplit(std_file1_I,'_icemod',/extract,/regex))[0]
325  std_file2_I = file_basename(std_file2_I,'.nc')
326  std_file2_I = (strsplit(std_file2_I,'_icemod',/extract,/regex))[0]
327
328;#########################################################################
329;######################  STANDARD PLOTS   ################################
330;#########################################################################
331
332  IF keyword_set(doplot) EQ 0 THEN doplot = 0
333
334; fixed color tabled
335  lct, 64
336  cnt = 0
337  htmltxt = ''
338;
339  cnt = cnt+1   &   blabla = 'Erp salinity damping term'
340  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_erp, ERP1, ERP2, _extra = ex
[4514]341;
[4320]342  cnt = cnt+1   &   blabla = 'Evaporation - Precipitation - Runoff term'
343  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_emp, EMP1, EMP2, _extra = ex
[4514]344;
[4320]345  cnt = cnt+1   &   blabla = 'Net heat flux'
346  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_qnet, Q1, Q2, QNET, _extra = ex
[4514]347;
[4320]348  cnt = cnt+1   &   blabla = 'Meridionnal Heat Transport'
349  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_mht, Q1.arr+geo, Q2.arr+geo, masknp, std_file_msksub, _extra = ex
[4514]350;
[4320]351  cnt = cnt+1   &   blabla = 'Global Barotropic stream Function'
352  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_bsf, U1, U2, _extra = ex
[4514]353;
[4320]354  cnt = cnt+1   &   blabla = 'mean Temperature diff with New Reynolds'
355  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_sst, T1, T2, TRey, _extra = ex
[4514]356;
[4320]357  cnt = cnt+1   &   blabla = 'mean Salinity diff with Levitus'
358  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_sss, S1, S2, SLev, _extra = ex
[4514]359;
[4320]360  cnt = cnt+1   &   blabla = 'Arctic mean Salinity diff with Levitus'
361  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_ArcSal, S1, SLev, _extra = ex       
[4514]362;
[4320]363  cnt = cnt+1   &   blabla = 'Arctic mean Salinity diff with Levitus and exp2'
364  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_ArcSal, S1, S2, SLev, _extra = ex
[4514]365;
[4320]366  cnt = cnt+1   &   blabla = 'Arctic mean Salinity diff with Levitus at z=100 meters'
367  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_ArcSal, S1, SLev, /z100, _extra = ex       
[4514]368;
[4320]369  cnt = cnt+1   &   blabla = 'Arctic mean Salinity diff with Levitus and exp2 at z=100 meters'
370  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_ArcSal, S1, S2, SLev, /z100, _extra = ex
[4514]371;
[4320]372  cnt = cnt+1   &   blabla = 'mean Temperature diff with Levitus at z=100 meters'
373  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_T100m, T1, T2, Tlev, _extra = ex
[4514]374
[4320]375  cnt = cnt+1   &   blabla = 'mean Salinity diff with Levitus at z=100 meters'
376  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_S100m, S1, S2, SLev, _extra = ex
[4514]377
378  cnt = cnt+1   &   blabla = 'Mixed layer depth'
379  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_mld, MLD1, MLD, _extra = ex
380;
[4320]381  cnt = cnt+1   &   blabla = 'Mixed layer depth differences'
382  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_mld, MLD_1, MLD_2, MLD, _extra = ex
383
384  ;SF: add 2 cases for max of Mixed Layer depth on march & septembre
385  cnt = cnt+1   &   blabla = 'Mixed layer depth on March'
386  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_max_mld, MLD_march_1, MLD_march_2, /MARCH, _extra = ex
387
388  cnt = cnt+1   &   blabla = 'Mixed layer depth on September'
389  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_max_mld, MLD_sept_1, MLD_sept_2, /SEPT, _extra = ex
390
391;; SF: commented because not ok for max MLD, output 5 days
392;; cnt = cnt+1   &   blabla = 'Zonal mean Mixed layer depth'
393;; IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_ZonMld, MLD_1, MLD_2, MLD, _extra = ex
394 
395  cnt = cnt+1   &   blabla = 'Zonal mean Temperature diff with Levitus: Global'
396  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_T, T1, T2, TLev, _extra = ex
[4514]397;
[4320]398  cnt = cnt+1   &   blabla = 'Zonal mean Temperature diff with Levitus: Atlantic'
399  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_T, T1, T2, TLev, SUBBASIN = 'Atl', _extra = ex
[4514]400
[4320]401  cnt = cnt+1   &   blabla = 'Zonal mean Temperature diff with Levitus: Indian'
402  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_T, T1, T2, TLev, SUBBASIN = 'Ind', _extra = ex
[4514]403
[4320]404  cnt = cnt+1   &   blabla = 'Zonal mean Temperature diff with Levitus: Pacific'
405  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_T, T1, T2, TLev, SUBBASIN = 'Pac', _extra = ex
[4514]406;
[4320]407  cnt = cnt+1   &   blabla = 'Zonal mean Salinity diff with Levitus: Global'
408  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_S, S1, S2, SLev, _extra = ex
[4514]409;
[4320]410  cnt = cnt+1   &   blabla = 'Zonal mean Salinity diff with Levitus: Atlantic'
411  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_S, S1, S2, SLev, SUBBASIN = 'Atl', _extra = ex
[4514]412;
[4320]413  cnt = cnt+1   &   blabla = 'Zonal mean Salinity diff with Levitus: Indian'
414  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_S, S1, S2, SLev, SUBBASIN = 'Ind', _extra = ex
[4514]415;
[4320]416  cnt = cnt+1   &   blabla = 'Zonal mean Salinity diff with Levitus: Pacific'
417  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_zonal_S, S1, S2, SLev, SUBBASIN = 'Pac', _extra = ex
[4514]418
[4320]419;  cnt = cnt+1   &   blabla = 'Arctic Ice Thickness: MARCH'
420;  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceThick, Ithi_march_1, Ithi_march_2, /ARC, /MARCH, _extra = ex
[4514]421;
[4320]422  cnt = cnt+1   &   blabla = 'Arctic Ice Thickness: APRIL'
423  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceThick, Ithi_april_1, Ithi_april_2, /ARC, /APRIL, _extra = ex
[4514]424;
[4320]425  cnt = cnt+1   &   blabla = 'Arctic Ice Thickness: SEPT'
426  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceThick, Ithi_sept_1, Ithi_sept_2, /ARC, /SEPT, _extra = ex
[4514]427
[4320]428;  cnt = cnt+1   &   blabla = 'Antarctic Ice Thickness: MARCH'
429;  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceThick, Ithi_march_1, Ithi_march_2, /ANT, /MARCH, _extra = ex
[4514]430;
[4320]431  cnt = cnt+1   &   blabla = 'Antarctic Ice Thickness: APRIL'
432  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceThick, Ithi_april_1, Ithi_april_2, /ANT, /APRIL, _extra = ex
[4514]433;
[4320]434  cnt = cnt+1   &   blabla = 'Antarctic Ice Thickness: SEPT'
435  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceThick, Ithi_sept_1, Ithi_sept_2, /ANT, /SEPT, _extra = ex
[4514]436;
437  cnt = cnt+1   &   blabla = 'Arctic Ice Age: MARCH'
438  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceAge, Iage_march_1, Iage_march_2, /ARC, /MARCH, _extra = ex
439
440  cnt = cnt+1   &   blabla = 'Arctic Ice Age: SEPT'
441  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceAge, Iage_sept_1, Iage_sept_2, /ARC, /SEPT, _extra = ex
442
443  cnt = cnt+1   &   blabla = 'Antarctic Ice Age: MARCH'
444  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceAge, Iage_march_1, Iage_march_2, /ANT, /MARCH, _extra = ex
445;
446  cnt = cnt+1   &   blabla = 'Antarctic Ice Age: SEPT'
447  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceAge, Iage_sept_1, Iage_sept_2, /ANT, /SEPT, _extra = ex
448;
[4320]449  cnt = cnt+1   &   blabla = 'Arctic Ice Fraction: MARCH'
450  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceFrac, Ifra_march_1, Ifra_march_2, /ARC, /MARCH, _extra = ex
[4514]451
[4320]452  cnt = cnt+1   &   blabla = 'Arctic Ice Fraction: SEPT'
453  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceFrac, Ifra_sept_1, Ifra_sept_2, /ARC, /SEPT, _extra = ex
[4514]454
[4320]455  cnt = cnt+1   &   blabla = 'Antarctic Ice Fraction: MARCH'
456  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceFrac, Ifra_march_1, Ifra_march_2, /ANT, /MARCH, _extra = ex
[4514]457;
[4320]458  cnt = cnt+1   &   blabla = 'Antarctic Ice Fraction: SEPT'
459  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceFrac, Ifra_sept_1, Ifra_sept_2, /ANT, /SEPT, _extra = ex
[4514]460;
461  cnt = cnt+1   &   blabla = 'Arctic SNOW Thickness: MARCH'
462  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_SnowThick, Isnow_march_1, Isnow_march_2, /ARC, /MARCH, _extra = ex
[4320]463;
[4514]464  cnt = cnt+1   &   blabla = 'Arctic SNOW Thickness: SEPT'
465  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_SnowThick, Isnow_sept_1, Isnow_sept_2, /ARC, /SEPT, _extra = ex
466
467  cnt = cnt+1   &   blabla = 'Antarctic SNOW Thickness: MARCH'
468  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_SnowThick, Isnow_march_1, Isnow_march_2, /ANT, /MARCH, _extra = ex
469;
470  cnt = cnt+1   &   blabla = 'Antarctic SNOW Thickness: SEPT'
471  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_SnowThick, Isnow_sept_1, Isnow_sept_2, /ANT, /SEPT, _extra = ex
472;
473  cnt = cnt+1   &   blabla = 'Arctic Ice Salinity: MARCH'
474  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceSal, Isal_march_1, Isal_march_2, /ARC, /MARCH, _extra = ex
475;
476  cnt = cnt+1   &   blabla = 'Arctic Ice Salinity: SEPT'
477  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceSal, Isal_sept_1, Isal_sept_2, /ARC, /SEPT, _extra = ex
478
479  cnt = cnt+1   &   blabla = 'Antarctic Ice Salinity: FEBRUARY'
480  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceSal, Isal_febr_1, Isal_febr_2, /ANT, /FEBR, _extra = ex
481;
482  cnt = cnt+1   &   blabla = 'Antarctic Ice Salinity: SEPT'
483  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_IceSal, Isal_sept_1, Isal_sept_2, /ANT, /SEPT, _extra = ex
484;
[4320]485  cnt = cnt+1   &   blabla = 'Meridional stream Function: Global (no Med)'
486  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_msf, V1, V2, SUBBASIN = 'GloNoMed', _extra = ex
[4514]487
[4320]488  cnt = cnt+1   &   blabla = 'Meridional stream Function: Atlantic'
489  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_msf, V1, V2, SUBBASIN = 'Atl', _extra = ex
[4514]490 ;
[4320]491  cnt = cnt+1   &   blabla = 'Meridional stream Function: Indian'
492  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_msf, V1, V2, SUBBASIN = 'Ind', _extra = ex
[4514]493 ;
[4320]494  cnt = cnt+1   &   blabla = 'Meridional stream Function: Indo-Pacific'
495  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_msf, V1, V2, SUBBASIN = 'IndoPac', _extra = ex
[4514]496;
[4320]497  cnt = cnt+1   &   blabla = 'Equatorial Temperature'
498  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_EqT, T1, T2, Tlev, _extra = ex
[4514]499;
[4320]500  cnt = cnt+1   &   blabla = 'Equatorial Salinity'
501  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_EqS, S1, S2, SLev, _extra = ex
[4514]502;
[4320]503  cnt = cnt+1   &   blabla = 'Equatorial zonal velocity'
504  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_EqU, U1, U2, _extra = ex
[4514]505;
[4320]506  cnt = cnt+1   &   blabla = 'Mediterranean salt tongue at depth=700'
507  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_Med_Sspread, S1, S2, SLev, 700, _extra = ex
[4514]508;
[4320]509  cnt = cnt+1   &   blabla = 'Mediterranean salt tongue at depth=1000'
510  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_Med_Sspread, S1, S2, SLev, 1000, _extra = ex
[4514]511;
[4320]512  cnt = cnt+1   &   blabla = 'Mediterranean water at lat=40°N'
513  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_Med_Sdepth, S1, S2, SLev, 40, _extra = ex
[4514]514;
[4320]515  cnt = cnt+1   &   blabla = 'Mediterranean water at lat=38°N'
516  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_Med_Sdepth, S1, S2, SLev, 38, _extra = ex
[4514]517;
[4320]518  cnt = cnt+1   &   blabla = 'Vertical Global mean T & S'
519  IF doplot EQ cnt OR doplot EQ 0 THEN std_plot_GlobMeanTS, T1, T2, TLev, S1, S2, SLev, _extra = ex
[4514]520;
[4320]521  IF n_elements(htmltxt) GT 1 THEN putfile, psdir+'std_plot_html_body.txt', htmltxt[1:*]
522 
523  return
524END
Note: See TracBrowser for help on using the repository browser.