1 | pro ti_vs_tsurf |
---|
2 | |
---|
3 | getcdf, $ |
---|
4 | file='/d6/vblmd/MERIDIANI_EXOMARS/saves_simu_LS_244_tau05/wrfout_d01_2024-09-08_00:00:00', $ |
---|
5 | charvar='TSURF', $ |
---|
6 | invar=tsurf |
---|
7 | tsurf = max ( tsurf, DIMENSION=3 ) |
---|
8 | |
---|
9 | getcdf, $ |
---|
10 | file='./geo_em.d01.nc', $ |
---|
11 | charvar='THERMAL_INERTIA', $ |
---|
12 | invar=ti |
---|
13 | |
---|
14 | getcdf, $ |
---|
15 | file='./geo_em.d01.nc', $ |
---|
16 | charvar='ALBEDO_GCM', $ |
---|
17 | invar=alb |
---|
18 | |
---|
19 | PS_START, file='ti.ps' |
---|
20 | !P.Charsize = 1.2 |
---|
21 | !p.charthick = 2.0 |
---|
22 | !p.thick = 2.0 |
---|
23 | !x.thick = 2.0 |
---|
24 | !y.thick = 2.0 |
---|
25 | plot, ti, tsurf, psym=3, title='Daily maximum of surface temperature at ExoMars landing season and region', xtitle='Thermal Inertia (tiu)', ytitle='Surface temperature (K)', xrange=[0,500], yrange=[270,320] |
---|
26 | oplot, ti[where(tsurf eq max(tsurf))], tsurf[where(tsurf eq max(tsurf))], psym=4 |
---|
27 | xyouts, 380, 310, 'TI = '+string(ti[where(tsurf eq max(tsurf))],'(I0)')+' tiu' |
---|
28 | PS_END, /PNG |
---|
29 | |
---|
30 | PS_START, file='alb.ps' |
---|
31 | !P.Charsize = 1.2 |
---|
32 | !p.charthick = 2.0 |
---|
33 | !p.thick = 2.0 |
---|
34 | !x.thick = 2.0 |
---|
35 | !y.thick = 2.0 |
---|
36 | plot, alb, tsurf, psym=3, title='Daily maximum of surface temperature at ExoMars landing season and region', xtitle='Albedo', ytitle='Surface temperature (K)', xrange=[0.1,0.3], yrange=[270,320] |
---|
37 | oplot, alb[where(tsurf eq max(tsurf))], tsurf[where(tsurf eq max(tsurf))], psym=4 |
---|
38 | xyouts, 0.25, 310, 'ALB = '+string(alb[where(tsurf eq max(tsurf))],'(F4.2)') |
---|
39 | PS_END, /PNG |
---|
40 | |
---|
41 | |
---|
42 | end |
---|