source: trunk/MESOSCALE/PLOT/RESERVE/tau_cloud.idl @ 163

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