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 ttop |
---|
19 | real,allocatable,dimension(:) :: kp ! TB ref pressure |
---|
20 | real p00 |
---|
21 | !$OMP THREADPRIVATE(ttop,kp,p00) |
---|
22 | ! surface properties ! TB16 |
---|
23 | real alb_n2b,alb_n2a,alb_ch4,alb_co,alb_tho,emis_n2b,emis_n2a |
---|
24 | !$OMP THREADPRIVATE(alb_n2b,alb_n2a,alb_ch4,alb_co,alb_tho,emis_n2b,emis_n2a) |
---|
25 | real emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq |
---|
26 | !$OMP THREADPRIVATE(emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq) |
---|
27 | real ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe |
---|
28 | !$OMP THREADPRIVATE(ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe) |
---|
29 | real alb_tho_spe,emis_tho_spe |
---|
30 | !$OMP THREADPRIVATE(alb_tho_spe,emis_tho_spe) |
---|
31 | |
---|
32 | real,allocatable,dimension(:) :: dryness !"Dryness coefficient" for grnd water ice sublimation |
---|
33 | ! AS: previously in tracer.h. it is more logical here. |
---|
34 | !$OMP THREADPRIVATE(dryness) |
---|
35 | |
---|
36 | end module surfdat_h |
---|
37 | |
---|