1 | pro ye2, r, t |
---|
2 | |
---|
3 | ;;paper |
---|
4 | min_lt = 12. |
---|
5 | max_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 | |
---|
17 | wherefiles='./REAL_50m_145_145_201_12km/' |
---|
18 | |
---|
19 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
20 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
21 | restore, filename=wherefiles+'case_A'+'/compturb.dat' |
---|
22 | restore, filename=wherefiles+'case_A'+'/getturb.dat' |
---|
23 | wspe = where( (localtime ge min_lt) and (localtime le max_lt) ) |
---|
24 | nspe = n_elements(wspe) |
---|
25 | r = TOTAL(a_vel_bot[*,wspe],2) |
---|
26 | t = TOTAL(a_h[*,wspe],2) |
---|
27 | rtot = [r] |
---|
28 | ttot = [t] |
---|
29 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
30 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
31 | restore, filename=wherefiles+'case_B'+'/compturb.dat' |
---|
32 | restore, filename=wherefiles+'case_B'+'/getturb.dat' |
---|
33 | r = TOTAL(a_vel_bot[*,wspe],2) |
---|
34 | t = TOTAL(a_h[*,wspe],2) |
---|
35 | rtot = [rtot,r] |
---|
36 | ttot = [ttot,t] |
---|
37 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
38 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
39 | restore, filename=wherefiles+'case_C'+'/compturb.dat' |
---|
40 | restore, filename=wherefiles+'case_C'+'/getturb.dat' |
---|
41 | r = TOTAL(a_vel_bot[*,wspe],2) |
---|
42 | t = TOTAL(a_h[*,wspe],2) |
---|
43 | rtot = [rtot,r] |
---|
44 | ttot = [ttot,t] |
---|
45 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
46 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
47 | restore, filename=wherefiles+'case_I'+'/compturb.dat' |
---|
48 | restore, filename=wherefiles+'case_I'+'/getturb.dat' |
---|
49 | r = TOTAL(a_vel_bot[*,wspe],2) |
---|
50 | t = TOTAL(a_h[*,wspe],2) |
---|
51 | rtot = [rtot,r] |
---|
52 | ttot = [ttot,t] |
---|
53 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
54 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
55 | restore, filename=wherefiles+'case_HIGH'+'/compturb.dat' |
---|
56 | restore, filename=wherefiles+'case_HIGH'+'/getturb.dat' |
---|
57 | r = TOTAL(a_vel_bot[*,wspe],2) |
---|
58 | t = TOTAL(a_h[*,wspe],2) |
---|
59 | rtot = [rtot,r] |
---|
60 | ttot = [ttot,t] |
---|
61 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
62 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
---|
63 | |
---|
64 | |
---|
65 | |
---|
66 | r = r / float(nspe) |
---|
67 | t = t / float(nspe) |
---|
68 | |
---|
69 | sssss = sort(t) |
---|
70 | r = r[sssss] |
---|
71 | t = 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 | |
---|
78 | end |
---|