source: trunk/mesoscale/PLOT/SPEC/POLAR/defs/polar_inc_uv.pro_winds @ 85

Last change on this file since 85 was 85, checked in by aslmd, 14 years ago

LMD_MM_MARS et LMD_LES_MARS: ajout des routines IDL pour tracer les sorties --> voir mesoscale/PLOT

File size: 2.5 KB
Line 
1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3;ntime    = 7  ;; le vrai indice IDL
4nlevel   = 0
5filename = '/donnees/aslmd/MODELES/LMD_MM_MARS/OUTILS_CONVERSION/wrfout_d03_2024-06-20_06:00:00_z'
6save_ps  = 'nest_polar_winds'
7filename = '/donnees/aslmd/MODELES/LMD_MM_MARS/OUTILS_CONVERSION/wrfout_d01_2024-06-20_06:00:00_z'
8save_ps  = 'single_polar_winds'
9;filename = '/tmp7/aslmd/one_more_nest/test/wrfout_d02_2024-06-19_06:00:00_zabg'
10;save_ps  = '2nest_polar_winds'
11
12;coord2d  = 'true'
13field1   = 'HGT'  ;; omettre trace vitesse horizontale
14;field2  = 'XLAT' ;; contour
15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
16format        = '(I0)' ;'(F5.2)'
17colors        =  32
18pal           =  19 ;22 ;33 ;39 ;6 ;11 ;0 ;11 ;6 ;0 ;6 ;39 ;19
19title_user    = 'Topography (m) + Horizontal wind vectors 6km ABG'
20title_axis    = ['grid points','grid points']
21subtitle_user   = 'LMD Mars Mesoscale'
22;subtitle_user   = subtitle_user + ' / UTC = 01:00pm'
23;subtitle_user   = subtitle_user + ' / Ls = 61.5!Uo!N'
24;subtitle_user   = subtitle_user + ' / dx = 10km' ;25km'
25;subtitle_user   = subtitle_user + ' / single domain'
26poscb=0.85
27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28;;; FILL LIMITS                                ;;;
29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
30minfield_init= -3000.
31maxfield_init= +3000.
32missing_value=1.e30
33lim_max = maxfield_init & w=where((what_I_plot ge lim_max) and (what_I_plot le 1e9)) & if (w[0] ne -1) then what_I_plot[w]=lim_max
34lim_min = minfield_init & w=where(what_I_plot le lim_min) & if (w[0] ne -1) then what_I_plot[w]=lim_min
35;lim_blank = 0.2 & w=where(abs(what_I_plot) le lim_blank) & if (w[0] ne -1) then what_I_plot[w]=missing_value
36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
37;;; WINDS                                      ;;;
38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
39windex=25.      ;; default: 20.
40stride=5.       ;; default: 5.
41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
42;;; CONTOUR                                    ;;;
43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
44;overcontour=overcontour-mean(overcontour)     
45overcontour=overcontour/1000.
46lev=-10. + 0.2*findgen(100)
47lev=-10. + 0.5*findgen(50)
48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
49;;; AXIS                                       ;;;
50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
51;isotropic='false'       ;; default: true
52intervalx=20.
53intervaly=20.
54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
55;;; MAP LIMITS                                 ;;;
56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
57windowx=[0.,120.]
58windowy=[0.,120.]
59windowx=[40.,140.]
60windowy=[40.,140.]
61
Note: See TracBrowser for help on using the repository browser.