source: trunk/MESOSCALE/PLOT/SPEC/GCM/velocity_plotplot.pro @ 134

Last change on this file since 134 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: 1.7 KB
Line 
1pro plotplot
2
3
4;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
7file='hi_res_run_swordfish/3830.002/m4/diagfi.nc'
8set_name='velocity'
9it=0
10iz=1
11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
14
15        ;
16        ; graphics definition
17        ;
18        if (n_elements(saveps) eq 0) then saveps='true'
19        if (saveps eq 'false') then begin
20           ;!p.multi=[0,3,2]
21           !P.CHARSIZE=2.
22           WINDOW, /PIXMAP & WDELETE & DEVICE,BYPASS_TRANSLATION=0,DECOMPOSED=0,RETAIN=2
23        endif else begin
24           PREF_SET, 'IDL_PATH', '/padata/beta/users/aspiga/Save/SOURCES/IDL/fsc_psconfig:<IDL_DEFAULT>', /COMMIT
25        endelse
26
27
28;;;;;;;;;;;;;;;;;;;;;;;;;;;
29getcdf, file=file, charvar='u'    , invar=u
30getcdf, file=file, charvar='v'    , invar=v
31getcdf, file=file, charvar='lon'  , invar=lon
32getcdf, file=file, charvar='lat'  , invar=lat
33;;;;;;;;;;;;;;;;;;;;;;;;;;;
34
35
36;;;;;;;;;;;;;;;;;;;;;;;;;;;
37what_I_plot = sqrt(reform(u(*,*,iz,it))^2 + reform(v(*,*,iz,it))^2)
38ox          = reform(u(*,*,iz,it))
39oy          = reform(v(*,*,iz,it))
40;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
42
43;;;;;;;;;;;;;;;;;;;;;;;;;;;
44        if (saveps eq 'true') then PS_Start, FILENAME=set_name+'.ps'
45        !P.Charsize = 1.2
46map_latlon, what_I_plot, lon, lat, overvector_x=ox, overvector_y=oy
47        if (saveps eq 'true') then PS_End, /PNG
48;;;;;;;;;;;;;;;;;;;;;;;;;;;
49
50
51;;;;;;;;;;;;;;;;;;;;;;;;;;;
52cmd='cp plotplot.pro '+set_name+'_plotplot.pro ; cp param_plot.idl '+set_name+'_param_plot.idl'
53SPAWN, cmd
54;;;;;;;;;;;;;;;;;;;;;;;;;;;
55
56
57end
Note: See TracBrowser for help on using the repository browser.