[135] | 1 | !----------------------------------------------------------------------- |
---|
[374] | 2 | module datafile_mod |
---|
[1470] | 3 | ! Address of the directory containing tables of data needed by the GCM |
---|
[374] | 4 | implicit none |
---|
[135] | 5 | |
---|
[1470] | 6 | ! Main directory: 'datadir': |
---|
[374] | 7 | ! Default for LMD machines: |
---|
[1795] | 8 | character(len=300),save :: datadir='datagcm' |
---|
[1520] | 9 | !$OMP THREADPRIVATE(datadir) |
---|
[1470] | 10 | |
---|
| 11 | ! Subdirectories of 'datadir': |
---|
| 12 | |
---|
| 13 | ! surfdir stores planetary topography, albedo, etc. (surface.nc files) |
---|
| 14 | character(len=12),parameter :: surfdir="surface_data" |
---|
| 15 | |
---|
[1822] | 16 | ! Default directories for correlated-k data |
---|
[2242] | 17 | ! Read in inifis_mod, set in physiq_mod |
---|
[1822] | 18 | character(LEN=100),save :: corrkdir = 'datagcm/corrk_data/50X50' |
---|
| 19 | character(LEN=100),save :: banddir = 'datagcm/corrk_data/50X50/50x50' |
---|
| 20 | !$OMP THREADPRIVATE(corrkdir,banddir) |
---|
| 21 | |
---|
[1795] | 22 | ! Default directory for microphysics |
---|
[1822] | 23 | ! Set in inifis_mod |
---|
| 24 | character(LEN=100),save :: config_mufi ='datagcm/microphysics/config.cfg' |
---|
| 25 | !$OMP THREADPRIVATE(config_mufi) |
---|
[1795] | 26 | |
---|
[2242] | 27 | ! Default file for coupled microphysics optical properties |
---|
| 28 | ! Set in physiq_mod |
---|
[3083] | 29 | character(LEN=100),save :: haze_opt_file ='datagcm/optical_tables/HAZE_OPT_23x23.DAT' |
---|
[2242] | 30 | !$OMP THREADPRIVATE(haze_opt_file) |
---|
| 31 | |
---|
[3083] | 32 | ! Default file for nudging of zonal wind |
---|
| 33 | ! Set in physiq_mod |
---|
[3497] | 34 | ! character(LEN=100),save :: nudging_file ='datagcm/SuperNudging.dat' |
---|
| 35 | character(LEN=100),save :: nudging_file ='datagcm/NewNudging.dat' |
---|
[3083] | 36 | !$OMP THREADPRIVATE(nudging_file) |
---|
| 37 | |
---|
[374] | 38 | end module datafile_mod |
---|
[135] | 39 | !----------------------------------------------------------------------- |
---|