source: trunk/LMDZ.PLUTO/libf/phypluto/surfdat_h.F90 @ 3455

Last change on this file since 3455 was 3455, checked in by afalco, 7 weeks ago

Pluto PCM: added conduction & molvis.
AF

File size: 1.7 KB
Line 
1
2       module surfdat_h
3
4       implicit none
5
6       real,allocatable,dimension(:) :: albedodat ! albedo of bare ground stocked in startfi.nc file.
7!$OMP THREADPRIVATE(albedodat)
8       ! Ehouarn: moved inertiedat to comsoil.h
9       !      real inertiedat, ! thermal inertia
10       real,allocatable,dimension(:) :: phisfi ! geopotential at ground level
11!$OMP THREADPRIVATE(phisfi)
12       real,dimension(2) :: emisice ! ice emissivity; 1:Northern hemisphere 2:Southern hemisphere
13       real emissiv
14       real,dimension(2) :: iceradius, dtemisice
15!$OMP THREADPRIVATE(emisice,emissiv,iceradius,dtemisice)
16       real,allocatable,dimension(:) :: zmea,zstd,zsig,zgam,zthe
17!$OMP THREADPRIVATE(zmea,zstd,zsig,zgam,zthe)
18       real phitop ! heatflux at top of atmosphere? for Triton !AF24
19       real ttop
20       real,allocatable,dimension(:) :: kp ! TB ref pressure
21       real p00
22!$OMP THREADPRIVATE(phitop,ttop,kp,p00)
23! surface properties ! TB16
24       real alb_n2b,alb_n2a,alb_ch4,alb_co,alb_tho,emis_n2b,emis_n2a
25!$OMP THREADPRIVATE(alb_n2b,alb_n2a,alb_ch4,alb_co,alb_tho,emis_n2b,emis_n2a)
26       real emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq
27!$OMP THREADPRIVATE(emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq)
28       real ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe
29!$OMP THREADPRIVATE(ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe)
30       real alb_tho_spe,emis_tho_spe
31!$OMP THREADPRIVATE(alb_tho_spe,emis_tho_spe)
32
33       real,allocatable,dimension(:) :: dryness  !"Dryness coefficient" for grnd water ice sublimation
34                                                 ! AS: previously in tracer.h. it is more logical here.
35!$OMP THREADPRIVATE(dryness)
36
37       end module surfdat_h
38
Note: See TracBrowser for help on using the repository browser.