|
Last change
on this file since 1895 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
|
| Line | |
|---|
| 1 | !----------------------------------------------------------------------- |
|---|
| 2 | module datafile_mod |
|---|
| 3 | ! Address of the directory containing tables of data needed by the GCM |
|---|
| 4 | implicit none |
|---|
| 5 | |
|---|
| 6 | ! Main directory: 'datadir': |
|---|
| 7 | ! Default for LMD machines: |
|---|
| 8 | character(len=300),save :: datadir='datagcm' |
|---|
| 9 | !$OMP THREADPRIVATE(datadir) |
|---|
| 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 | |
|---|
| 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 | |
|---|
| 22 | ! Default directory for microphysics |
|---|
| 23 | ! Set in inifis_mod |
|---|
| 24 | character(LEN=100),save :: config_mufi ='datagcm/microphysics/config.cfg' |
|---|
| 25 | !$OMP THREADPRIVATE(config_mufi) |
|---|
| 26 | |
|---|
| 27 | end module datafile_mod |
|---|
| 28 | !----------------------------------------------------------------------- |
|---|
Note: See
TracBrowser
for help on using the repository browser.