[3184] | 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) |
---|
[3195] | 18 | real ttop |
---|
[3275] | 19 | real,allocatable,dimension(:) :: kp ! TB ref pressure |
---|
[3195] | 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 |
---|
[3275] | 24 | !$OMP THREADPRIVATE(alb_n2b,alb_n2a,alb_ch4,alb_co,alb_tho,emis_n2b,emis_n2a) |
---|
[3195] | 25 | real emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq |
---|
[3275] | 26 | !$OMP THREADPRIVATE(emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq) |
---|
[3195] | 27 | real ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe |
---|
[3275] | 28 | !$OMP THREADPRIVATE(ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe) |
---|
[3195] | 29 | real alb_tho_spe,emis_tho_spe |
---|
[3275] | 30 | !$OMP THREADPRIVATE(alb_tho_spe,emis_tho_spe) |
---|
[3184] | 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 | |
---|