[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) |
---|
[3455] | 18 | real phitop ! heatflux at top of atmosphere? for Triton !AF24 |
---|
[3195] | 19 | real ttop |
---|
[3275] | 20 | real,allocatable,dimension(:) :: kp ! TB ref pressure |
---|
[3195] | 21 | real p00 |
---|
[3455] | 22 | !$OMP THREADPRIVATE(phitop,ttop,kp,p00) |
---|
[3195] | 23 | ! surface properties ! TB16 |
---|
| 24 | real alb_n2b,alb_n2a,alb_ch4,alb_co,alb_tho,emis_n2b,emis_n2a |
---|
[3275] | 25 | !$OMP THREADPRIVATE(alb_n2b,alb_n2a,alb_ch4,alb_co,alb_tho,emis_n2b,emis_n2a) |
---|
[3195] | 26 | real emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq |
---|
[3275] | 27 | !$OMP THREADPRIVATE(emis_ch4,emis_co,emis_tho,emis_tho_eq,alb_tho_eq,alb_ch4_eq) |
---|
[3195] | 28 | real ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe |
---|
[3275] | 29 | !$OMP THREADPRIVATE(ITN2,ITCH4,ITH2O,ITN2d,ITCH4d,ITH2Od,alb_ch4_s,albspe,emispe) |
---|
[3195] | 30 | real alb_tho_spe,emis_tho_spe |
---|
[3275] | 31 | !$OMP THREADPRIVATE(alb_tho_spe,emis_tho_spe) |
---|
[3184] | 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 | |
---|