source: trunk/MESOSCALE/PLOT/SPEC/LES/turb_section_period.pro @ 205

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

mars: test outliers [dans initracer.F, commente] LMD_MM_MARS: modifications mineures [retrocompatibilite ancienne physique, callphys.def test pour nouvelle physique] PLOT: generalisation de la routine map_uvt pour pouvoir tracer des figures en projection polaire complete

  • Property svn:executable set to *
File size: 1.8 KB
Line 
1pro turb_section_period
2;
3;
4;
5what_I_plot=0.
6overcontour=0.
7SPAWN, '\rm param_plot.idl ; cp turb_section_period_inc.pro param_plot.idl'
8;
9;
10;
11filefile = "./MERIDIANI_tau050_wind10_section_plume.nc"
12getcdf, file=filefile, charvar="W", invar=zew
13getcdf, file=filefile, charvar="PHTOT", invar=zevar
14zew   = reform(zew)
15zevar = reform(zevar)
16
17        nx = n_elements(zevar(*,0))
18        nz = n_elements(zevar(0,*))
19
20        xx = findgen(nx) * 100. / 1000.
21        zz = reform(zevar(0,*)) / 3.72 / 1000. + ( 1473.35 / 1000. )
22
23        zew = zew[*,0:nz-2]
24        zz = zz[0:nz-2]
25
26
27        PS_Start, filename='sectionLES.ps'
28        !P.Charsize = 1.2
29        !p.charthick = 2.0
30        !p.thick = 2.0
31        !x.thick = 2.0
32        !y.thick = 2.0
33
34        what_I_plot = zew
35        lon = xx
36        lat = zz
37
38        map_latlon, $
39                what_I_plot, $                          ; 2D field
40                lon, $                                  ; 1D latitude OR 2D
41                lat, $                                  ; 1D longitude OR 2D
42                minfield=minfield_init, $               ; minimum value of plotted field (=0: calculate)
43                maxfield=maxfield_init, $               ; maximum value of plotted field (=0: calculate)
44                overcontour=overcontour, $              ; another 2D field to overplot with contour lines (=0: no)
45                overvector_x=overvector_x, $            ; wind vector - x component (=0: no)
46                overvector_y=overvector_y, $            ; wind vector - y component (=0: no)
47                ct=pal, $                               ; color table (33-rainbow is default)
48                colors=colors, $                        ; number of colors/levels (32 is default)
49                title=title_user, $                     ; title of the plot ('' is default)
50                format=format                           ; format of colorbar annotations ('(F6.2)' is default)
51
52PS_End, /PNG
53end
Note: See TracBrowser for help on using the repository browser.