source: trunk/MESOSCALE_DEV/PLOT/ARWpost/gw_name.idl @ 937

Last change on this file since 937 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.0 KB
Line 
1;
2; FILL HERE SOME FIELD-DEPENDENT SETTINGS
3;
4
5case field1 of
6'HGT': begin 
7        title='Topography (km)'
8        pal=16
9        format='(F7.0)'
10        what_I_plot=what_I_plot/1000.
11end
12'tk': begin
13        title='Temperature (K)'
14        pal=3
15        format='(F4.0)'
16end
17'TSURF': begin
18        title='Surface Temperature (K)'
19        pal=3
20        format='(F4.0)'
21        no3D='true'
22end
23'U': begin
24        title='Zonal wind (!Nm!N.s!U-1!N)'
25        if (winds(0) eq 'U') then title='Wind field (!Nm!N.s!U-1!N)'
26        pal=33
27end
28'V': begin
29        title='Meridional wind (!Nm!N.s!U-1!N)'
30        if (winds(0) eq 'V') then title='Wind field (!Nm!N.s!U-1!N)'
31        pal=33
32end
33'T': begin
34        print, 'coucou'
35        what_I_plot = what_I_plot + 220.
36        title='Potential temperature (K)'
37end
38'W': begin
39        title='Vertical wind (!Nm!N.s!U-1!N)'
40        pal=33  ;;pal=16
41        format='(F6.2)'
42end
43'ICETOT': begin
44        title='Water ice column (!7l!3m-pr)'
45        pal=22
46        format='(F5.1)'
47        what_I_plot=what_I_plot*1000.
48end
49'MTOT': begin
50        title='Water vapor column (!7l!3m-pr)'
51        pal=22
52        format='(F5.1)'
53        what_I_plot=what_I_plot*1000.
54end
55'RAVE': begin
56        title='Average water ice radius (!7l!3m)'
57        pal=22
58        format='(F5.1)'
59        what_I_plot=what_I_plot*1e6
60end
61'RICE': begin
62        title='Water ice radius (!7l!3m)'
63        pal=22
64        format='(F5.1)'
65        what_I_plot=what_I_plot*1e6
66end
67'QH2O': begin
68        title='Water vapor mixing ratio (ppm)'
69        pal=33
70        format='(F5.1)'
71        format='(I0)'
72        what_I_plot=what_I_plot*1e6
73end
74'QH2O_ICE': begin
75        title='Water ice mixing ratio (ppm)'
76        pal=22
77        format='(F5.1)'
78        format='(I0)'
79        what_I_plot=what_I_plot*1e6
80end
81'USTM': begin
82        title='Friction velocity (!Nm!N.s!U-1!N)'
83        pal=22
84        format='(F4.2)'
85        no3D='true'
86end
87else: begin
88        title=''
89        pal=33
90        format='(F6.2)'
91end
92endcase
93
94case field2 of
95'T': begin
96        overcontour = overcontour + 220.
97end
98;'HGT': begin
99;       overcontour = overcontour/1000.
100;end
101else:
102endcase
103
Note: See TracBrowser for help on using the repository browser.