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