|
Last change
on this file since 1483 was
1470,
checked in by emillour, 10 years ago
|
|
Generic GCM:
- reorganizing the "datadir" structure: aerosol properties should now be in
subdirectory 'aerosol_properties' of datadir, and surface.nc files should
be in subdirectory 'surface_data'. These subdirectory names are stored in
module datafile_mod.
- Made things retro-compatible so that using an 'old' datadir structure (ie.
aerosol properties files and surface files in datadir) still works.
EM
|
|
File size:
985 bytes
|
| 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 Berserker @ UChicago: |
|---|
| 8 | ! character(len=300) :: datadir='/home/rwordsworth/datagcm' |
|---|
| 9 | ! Default for Gnome Idataplex: |
|---|
| 10 | ! character(len=300) :: datadir='/san/home/rdword/gcm/datagcm' |
|---|
| 11 | ! Default for LMD machines: |
|---|
| 12 | character(len=300) :: datadir='/u/lmdz/WWW/planets/LMDZ.GENERIC/datagcm' |
|---|
| 13 | |
|---|
| 14 | ! Subdirectories of 'datadir': |
|---|
| 15 | |
|---|
| 16 | ! surfdir stores planetary topography, albedo, etc. (surface.nc files) |
|---|
| 17 | character(len=12),parameter :: surfdir="surface_data" |
|---|
| 18 | |
|---|
| 19 | ! aerdir stores aerosol properties files (optprop_*dat files) |
|---|
| 20 | character(LEN=18),parameter :: aerdir="aerosol_properties" |
|---|
| 21 | |
|---|
| 22 | end module datafile_mod |
|---|
| 23 | !----------------------------------------------------------------------- |
|---|
Note: See
TracBrowser
for help on using the repository browser.