[781] | 1 | ! |
---|
[2538] | 2 | ! $Id: surface_data.F90 3901 2021-05-17 14:05:36Z abarral $ |
---|
[781] | 3 | ! |
---|
| 4 | MODULE surface_data |
---|
| 5 | |
---|
[3319] | 6 | IMPLICIT NONE |
---|
| 7 | |
---|
[781] | 8 | REAL, PARAMETER :: calice=1.0/(5.1444e+06*0.15) |
---|
| 9 | REAL, PARAMETER :: calsno=1./(2.3867e+06*.15) |
---|
| 10 | |
---|
[996] | 11 | LOGICAL, SAVE :: ok_veget ! true for use of vegetation model ORCHIDEE |
---|
[781] | 12 | !$OMP THREADPRIVATE(ok_veget) |
---|
[2912] | 13 | |
---|
| 14 | CHARACTER(len=10), SAVE :: type_veget ! orchidee/y/bucket/n/betaclim |
---|
| 15 | !$OMP THREADPRIVATE(type_veget) |
---|
| 16 | |
---|
[996] | 17 | CHARACTER(len=6), SAVE :: type_ocean ! force/slab/couple |
---|
| 18 | !$OMP THREADPRIVATE(type_ocean) |
---|
| 19 | |
---|
| 20 | ! if type_ocean=couple : version_ocean=opa8 ou nemo |
---|
[2057] | 21 | ! if type_ocean=slab : version_ocean=sicOBS or sicINT or sicNO |
---|
[996] | 22 | CHARACTER(len=6), SAVE :: version_ocean |
---|
| 23 | !$OMP THREADPRIVATE(version_ocean) |
---|
| 24 | |
---|
[2075] | 25 | ! Pas de temps couplage atm/oce (en secondes) |
---|
| 26 | REAL, SAVE :: t_coupl |
---|
| 27 | !$OMP THREADPRIVATE(t_coupl) |
---|
| 28 | |
---|
[3792] | 29 | ! FOR INLANDSIS: |
---|
| 30 | !=============== |
---|
[3900] | 31 | |
---|
[3901] | 32 | ! 1 for coupling with INLANDSIS |
---|
| 33 | INTEGER, SAVE :: landice_opt ! 1 for coupling with INLANDSIS |
---|
[3792] | 34 | !$OMP THREADPRIVATE(landice_opt) |
---|
| 35 | |
---|
[3900] | 36 | ! temperature calculation options within the soil and at the surface |
---|
| 37 | INTEGER, SAVE :: iflag_tsurf_inlandsis,iflag_temp_inlandsis |
---|
| 38 | !$OMP THREADPRIVATE(iflag_tsurf_inlandsis,iflag_temp_inlandsis) |
---|
[3792] | 39 | |
---|
[3900] | 40 | ! flags for albedo and roughness calc. |
---|
| 41 | INTEGER, SAVE :: iflag_albcalc,iflag_z0m_snow |
---|
| 42 | !$OMP THREADPRIVATE(iflag_albcalc,iflag_z0m_snow) |
---|
[3792] | 43 | |
---|
| 44 | ! with or without snow module/ blowing snow, ascii outfile |
---|
[3900] | 45 | LOGICAL, SAVE :: SnoMod,BloMod,ok_outfor |
---|
[3792] | 46 | !$OMP THREADPRIVATE(SnoMod,BloMod,ok_outfor) |
---|
| 47 | |
---|
[3900] | 48 | ! activate slush, korlyakov snow density, RN z0h calc. |
---|
| 49 | LOGICAL, SAVE :: is_ok_slush,is_ok_density_kotlyakov,is_ok_z0h_rn |
---|
| 50 | !$OMP THREADPRIVATE(is_ok_slush,is_ok_density_kotlyakov,is_ok_z0h_rn) |
---|
| 51 | |
---|
| 52 | ! activate detection snow/ice layers and option XF discrtet/option runoff AC |
---|
| 53 | LOGICAL, SAVE :: ok_zsn_ii,discret_xf,opt_runoff_ac |
---|
| 54 | !$OMP THREADPRIVATE(ok_zsn_ii,discret_xf, opt_runoff_ac) |
---|
| 55 | |
---|
| 56 | ! value of z0m snow when prescribed and albedo correction term |
---|
| 57 | REAL, SAVE :: prescribed_z0m_snow,correc_alb |
---|
| 58 | !$OMP THREADPRIVATE(prescribed_z0m_snow, correc_alb) |
---|
| 59 | |
---|
| 60 | ! value of sphericity [0-99] and snow grain size [e-4m] for polar buffer snow |
---|
| 61 | ! layer |
---|
| 62 | REAL, SAVE :: buf_sph_pol,buf_siz_pol |
---|
| 63 | !$OMP THREADPRIVATE(buf_sph_pol,buf_siz_pol) |
---|
| 64 | |
---|
| 65 | |
---|
| 66 | |
---|
[781] | 67 | END MODULE surface_data |
---|