Last change
on this file since 2241 was
1822,
checked in by jvatant, 8 years ago
|
Preliminary modifs for the optical coupling of haze
+ Moved inits of setspi/v before init of mufi
+ Added access to tarcers in optci/v
+ Some coherence in call to directories
JVO
|
File size:
1.1 KB
|
Rev | Line | |
---|
[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 |
---|
| 17 | ! Set in inifis_mod |
---|
| 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 | |
---|
[374] | 27 | end module datafile_mod |
---|
[135] | 28 | !----------------------------------------------------------------------- |
---|
Note: See
TracBrowser
for help on using the repository browser.