[787] | 1 | |
---|
| 2 | module surfdat_h |
---|
| 3 | |
---|
| 4 | implicit none |
---|
| 5 | |
---|
[1482] | 6 | real,allocatable,dimension(:) :: albedodat ! albedo of bare ground stocked in startfi.nc file. |
---|
[1315] | 7 | !$OMP THREADPRIVATE(albedodat) |
---|
[787] | 8 | ! Ehouarn: moved inertiedat to comsoil.h |
---|
| 9 | ! real inertiedat, ! thermal inertia |
---|
| 10 | real,allocatable,dimension(:) :: phisfi ! geopotential at ground level |
---|
[1315] | 11 | !$OMP THREADPRIVATE(phisfi) |
---|
[787] | 12 | real,dimension(2) :: emisice ! ice emissivity; 1:Northern hemisphere 2:Southern hemisphere |
---|
| 13 | real emissiv |
---|
| 14 | real,dimension(2) :: iceradius, dtemisice |
---|
[1482] | 15 | !$OMP THREADPRIVATE(emisice,emissiv,iceradius,dtemisice) |
---|
[787] | 16 | real,allocatable,dimension(:) :: zmea,zstd,zsig,zgam,zthe |
---|
[1315] | 17 | !$OMP THREADPRIVATE(zmea,zstd,zsig,zgam,zthe) |
---|
[787] | 18 | |
---|
| 19 | real,allocatable,dimension(:) :: dryness !"Dryness coefficient" for grnd water ice sublimation |
---|
| 20 | ! AS: previously in tracer.h. it is more logical here. |
---|
| 21 | |
---|
| 22 | logical,allocatable,dimension(:) :: watercaptag !! was in watercap.h |
---|
[1315] | 23 | !$OMP THREADPRIVATE(dryness,watercaptag) |
---|
[787] | 24 | |
---|
| 25 | end module surfdat_h |
---|
| 26 | |
---|