source: trunk/MESOSCALE/PLOT/SPEC/LES/ye.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.6 KB
Line 
1pro ye, r, t
2
3;; paper
4min_lt = 13.
5max_lt = 16.
6
7;min_lt = 12.
8;max_lt = 16.
9
10;min_lt = 13.
11;max_lt = 15.
12
13
14wherefiles='./REAL_50m_145_145_201_12km/'
15
16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
18restore, filename=wherefiles+'case_A'+'/compturb.dat'
19restore, filename=wherefiles+'case_A'+'/getturb.dat'
20wspe = where( (localtime ge min_lt) and (localtime le max_lt) )
21nspe = n_elements(wspe)
22r = TOTAL(a_wt_bot[*,wspe],2)
23t = TOTAL(a_h[*,wspe],2)
24rtot = [r]
25ttot = [t]
26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
28restore, filename=wherefiles+'case_B'+'/compturb.dat'
29restore, filename=wherefiles+'case_B'+'/getturb.dat'
30r = TOTAL(a_wt_bot[*,wspe],2)
31t = TOTAL(a_h[*,wspe],2)
32rtot = [rtot,r]
33ttot = [ttot,t]
34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
36restore, filename=wherefiles+'case_C'+'/compturb.dat'
37restore, filename=wherefiles+'case_C'+'/getturb.dat'
38r = TOTAL(a_wt_bot[*,wspe],2)
39t = TOTAL(a_h[*,wspe],2)
40rtot = [rtot,r]
41ttot = [ttot,t]
42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
44restore, filename=wherefiles+'case_I'+'/compturb.dat'
45restore, filename=wherefiles+'case_I'+'/getturb.dat'
46r = TOTAL(a_wt_bot[*,wspe],2)
47t = TOTAL(a_h[*,wspe],2)
48rtot = [rtot,r]
49ttot = [ttot,t]
50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
52restore, filename=wherefiles+'case_HIGH'+'/compturb.dat'
53restore, filename=wherefiles+'case_HIGH'+'/getturb.dat'
54r = TOTAL(a_wt_bot[*,wspe],2)
55t = TOTAL(a_h[*,wspe],2)
56rtot = [rtot,r]
57ttot = [ttot,t]
58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
60
61
62
63r = r / float(nspe)
64t = t / float(nspe)
65
66sssss = sort(t)
67r = r[sssss]
68t = t[sssss]
69
70;;
71;; OK
72;;
73;lim=0.30 & zelim=(-3.85/alog(lim)+0.07*alog(lim))*exp(-4.61*lim)
74;up=1. & & zeup= - 1.55 * up + 1.27
75;slope = (zelim - zeup) / (lim - up) & ord = zeup - slope * up
76;t1 = findgen(1001.)*lim/1000. & param1 = (-3.85/alog(t1)+0.07*alog(t1))*exp(-4.61*t1)
77;t2 = lim + findgen(1001.)*(1.0 - lim)/1000. & param2 = slope * t2 + ord
78;
79;r = [param1, param2]
80;t = [t1, t2]
81
82
83end
Note: See TracBrowser for help on using the repository browser.