source: trunk/MESOSCALE_DEV/PLOT/SPEC/ti_vs_tsurf.pro @ 207

Last change on this file since 207 was 114, checked in by aslmd, 14 years ago

LMD_MM_MARS: update graphic tools for GW, water cycle + generic graphic stuff (ps_start, map_latlon) + update notes

File size: 1.4 KB
Line 
1pro ti_vs_tsurf
2
3getcdf, $
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
7tsurf = max ( tsurf, DIMENSION=3 )
8
9getcdf, $
10        file='./geo_em.d01.nc', $
11        charvar='THERMAL_INERTIA', $
12        invar=ti
13
14getcdf, $
15        file='./geo_em.d01.nc', $
16        charvar='ALBEDO_GCM', $
17        invar=alb
18
19PS_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
25plot, 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]
26oplot, ti[where(tsurf eq max(tsurf))], tsurf[where(tsurf eq max(tsurf))], psym=4
27xyouts, 380, 310, 'TI = '+string(ti[where(tsurf eq max(tsurf))],'(I0)')+' tiu'
28PS_END, /PNG
29
30PS_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
36plot, 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]
37oplot, alb[where(tsurf eq max(tsurf))], tsurf[where(tsurf eq max(tsurf))], psym=4
38xyouts, 0.25, 310, 'ALB = '+string(alb[where(tsurf eq max(tsurf))],'(F4.2)')
39PS_END, /PNG
40
41
42end
Note: See TracBrowser for help on using the repository browser.