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

Last change on this file since 205 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 
1pro similarity
2
3!p.multi = [0,2,1]
4
5
6lim=0.30 & zelim=(-3.85/alog(lim)+0.07*alog(lim))*exp(-4.61*lim)
7up=1. & & zeup= - 1.55 * up + 1.27
8slope = (zelim - zeup) / (lim - up) & ord = zeup - slope * up
9t1 = findgen(1001.)*lim/1000. & param1 = (-3.85/alog(t1)+0.07*alog(t1))*exp(-4.61*t1)
10t2 = lim + findgen(1001.)*(1.0 - lim)/1000. & param2 = slope * t2 + ord
11;;print, slope, ' slope'
12;;print, ord, ' ord'
13;;      -1.51562 slope      1.23562 ord
14
15
16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
17set_title     =  "Similarity functions: vertical eddy heat flux"
18set_titlex    =  "Dimensionless vertical heat flux <w'T'>/<w'T'>!Dmax!N"
19set_titley    =  'Dimensionless height z/z!Di!N'
20set_subtitle  =  ''
21set_xrange    =  [-0.5,1.]
22set_yrange    =  [0.0,1.0]
23set_tickx     =  0.25
24set_ticky     =  0.1
25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26;zesim = 1 - 1.2 * a_h
27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28PS_Start, FILENAME='similarity.ps'
29!P.Charsize = 1.2
30plot, param1, t1, xtitle=set_titlex, xrange=set_xrange, xtickinterval=set_tickx, ytitle=set_titley, yrange=set_yrange, ytickinterval=set_ticky, title=set_title, subtitle=set_subtitle;, /ISOTROPIC
31oplot, param2, t2
32oplot, [0.,0.], set_yrange, linestyle=1
33oplot, 1 - 1.2 * t1, t1, linestyle=2
34oplot, 1 - 1.2 * t2, t2, linestyle=2
35xyouts, 0.6, 0.47, 'MARS'
36xyouts, 0.25, 0.3, 'EARTH'
37;PS_End, /PNG
38
39
40t1 = findgen(2001.)*1./2000.
41param1 = 2.05 * t1^(2./3.) * ( 1. - 0.64 * t1 )^2
42param2 = 1.80 * t1^(2./3.) * ( 1. - 0.80 * t1 )^2
43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
44set_title     =  "Similarity functions: vert. vel. variance"
45set_titlex    =  "Dimensionless vert. vel. variance <w'!U2!N>/w!D*!N!U2!N"
46set_titley    =  'Dimensionless height z/z!Di!N'
47set_subtitle  =  ''
48set_xrange    =  [0.,1.]
49set_yrange    =  [0.0,1.0]
50set_tickx     =  0.25
51set_ticky     =  0.1
52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
54;PS_Start, FILENAME='similarity.ps'
55!P.Charsize = 1.2
56plot, param1, t1, xtitle=set_titlex, xrange=set_xrange, xtickinterval=set_tickx, ytitle=set_titley, yrange=set_yrange, ytickinterval=set_ticky, title=set_title, subtitle=set_subtitle;, /ISOTROPIC
57oplot, param2, t1, linestyle=2
58xyouts, 0.2, 0.3, 'EARTH'
59xyouts, 0.67, 0.4, 'MARS'
60PS_End, /PNG
61
62
63
64end
Note: See TracBrowser for help on using the repository browser.