|
Last change
on this file since 2925 was
2560,
checked in by slebonnois, 4 years ago
|
|
SL: Implementation of SW computation based on generic model. Switch between this new SW module or old module that reads R. Haus tables implemented with a key (solarchoice)
|
|
File size:
1.2 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 (link in the simulation directory) : |
|---|
| 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 | ! aerdir stores aerosol properties files (optprop_*dat files) |
|---|
| 17 | character(LEN=18),parameter :: aerdir="aerosol_properties" |
|---|
| 18 | |
|---|
| 19 | ! corrkdir points to the directory that stores correlated-k data |
|---|
| 20 | ! the corrkdir link must be in datagcm/corrk_data/ |
|---|
| 21 | character(len=100),parameter :: corrkdir="corrkdir" |
|---|
| 22 | !$OMP THREADPRIVATE(corrkdir) |
|---|
| 23 | |
|---|
| 24 | ! also for corrk data: defined in sw_venus_corrk.F90 |
|---|
| 25 | ! from NBinfrared and NBvisible hardcoded in radinc_h.F90 |
|---|
| 26 | character(len=100),save :: banddir="" |
|---|
| 27 | !$OMP THREADPRIVATE(banddir) |
|---|
| 28 | |
|---|
| 29 | end module datafile_mod |
|---|
| 30 | !----------------------------------------------------------------------- |
|---|
Note: See
TracBrowser
for help on using the repository browser.