Last change
on this file since 163 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:
1007 bytes
|
Line | |
---|
1 | |
---|
2 | ; |
---|
3 | ; winds=['ICETOT','RAVE'] |
---|
4 | ; |
---|
5 | |
---|
6 | if ( (winds(0) eq 'ICETOT') $ |
---|
7 | and (winds(1) eq 'RAVE') ) then begin |
---|
8 | |
---|
9 | print, 'computing water ice cloud opacity' |
---|
10 | |
---|
11 | title='Water ice cloud opacity' |
---|
12 | |
---|
13 | mc=overvector_x ;; kg/m2 |
---|
14 | rc=overvector_y ;; m |
---|
15 | |
---|
16 | ; |
---|
17 | ; VISIBLE BENSON |
---|
18 | ; |
---|
19 | rc_mic=2. |
---|
20 | cext=24.655 ;; lambda 1 mic |
---|
21 | pi = 3.14159265 |
---|
22 | qext=cext/(pi*rc_mic^2) |
---|
23 | print, 'q ext - benson - 1 mic ', qext |
---|
24 | |
---|
25 | ; |
---|
26 | ; 12 mic. |
---|
27 | ; |
---|
28 | cext=70. ;;Wolff 2003 pour 4 mic. |
---|
29 | rc_mic=4. |
---|
30 | pi = 3.14159265 |
---|
31 | qext=cext/(pi*rc_mic^2) |
---|
32 | print, 'q ext - wolff - 12 mic ', qext |
---|
33 | ;;;Montmessin 2003 |
---|
34 | ;qext=1. |
---|
35 | |
---|
36 | ; |
---|
37 | ; .4 microns (visible) |
---|
38 | ; |
---|
39 | rc_mic=2. |
---|
40 | cext=20.613 ;;mike |
---|
41 | pi = 3.14159265 |
---|
42 | qext=cext/(pi*rc_mic^2) |
---|
43 | print, 'q ext - wolff - 0.4 mic ', qext |
---|
44 | title=title+' at 0.4 !7l!3m' |
---|
45 | |
---|
46 | ;; |
---|
47 | ;; visible .4 microns |
---|
48 | ;; |
---|
49 | ;qext=1.8 |
---|
50 | ;qext=2. |
---|
51 | |
---|
52 | print, 'final q ext ', qext |
---|
53 | |
---|
54 | |
---|
55 | ; |
---|
56 | ; CALCUL |
---|
57 | ; |
---|
58 | what_I_plot = 3.*qext*mc / (4.*917.*rc) |
---|
59 | what_I_plot[where(FINITE(what_I_plot) eq 0)]=0. |
---|
60 | |
---|
61 | ;overcontour=3.*qext*mc / (4.*917.*rc) |
---|
62 | ;overcontour[where(FINITE(overcontour) eq 0)]=0. |
---|
63 | |
---|
64 | |
---|
65 | overvector_x=0 |
---|
66 | overvector_y=0 |
---|
67 | |
---|
68 | endif |
---|
Note: See
TracBrowser
for help on using the repository browser.