source: trunk/mesoscale/PLOT/SPEC/LES/comp_velo.pro @ 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: 1.7 KB
Line 
1
2
3PS_Start, FILENAME='velmax.ps'
4!P.Charsize = 1.2
5
6
7history_interval_s = 400.
8history_interval_s = 100.
9smoothampl=3700/history_interval_s
10;smoothampl=0.  ;; no smooth
11;smoothampl=20.
12smoothampl=5.
13
14lev=1
15;lev=0 qu'il faut faire ???
16
17
18@report_tasi.inc
19
20
21
22
23;restore, filename='REAL_50m_145_145_201_12km/case_A/addturb.dat'
24restore, filename=saveplot+cases(0)+'/addturb.dat'
25restore, filename=saveplot+cases(0)+'/getturb.dat'
26print, h(lev)
27velmaxye = reform(velmax(lev,*))
28velmaxye = SMOOTH(TEMPORARY(velmaxye), [smoothampl], /EDGE_TRUNCATE)
29plot, localtime, velmaxye, $
30xrange=[8.,17.], xtickinterval=1., ytickinterval=2.0, $
31yrange=[0.,14.], ytitle='Horizontal velocity (m s!U-1!N)', xtitle='Local time (h)'
32
33;restore, filename='REAL_50m_145_145_201_12km/case_B/addturb.dat'
34restore, filename=saveplot+cases(1)+'/addturb.dat'
35restore, filename=saveplot+cases(1)+'/getturb.dat'
36print, h(lev)
37velmaxye = reform(velmax(lev,*))
38velmaxye = SMOOTH(TEMPORARY(velmaxye), [smoothampl], /EDGE_TRUNCATE)
39oplot, localtime, velmaxye, linestyle=1
40
41;restore, filename='REAL_50m_145_145_201_12km/case_C/addturb.dat'
42restore, filename=saveplot+cases(2)+'/addturb.dat'
43restore, filename=saveplot+cases(2)+'/getturb.dat'
44print, h(lev)
45velmaxye = reform(velmax(lev,*))
46velmaxye = SMOOTH(TEMPORARY(velmaxye), [smoothampl], /EDGE_TRUNCATE)
47oplot, localtime, velmaxye, linestyle=2
48
49;restore, filename='REAL_50m_145_145_201_12km/case_I/addturb.dat'
50restore, filename=saveplot+cases(3)+'/addturb.dat'
51restore, filename=saveplot+cases(3)+'/getturb.dat'
52print, h(lev)
53velmaxye = reform(velmax(lev,*))
54velmaxye = SMOOTH(TEMPORARY(velmaxye), [smoothampl], /EDGE_TRUNCATE)
55oplot, localtime, velmaxye, linestyle=3
56
57PS_END, /PNG
Note: See TracBrowser for help on using the repository browser.