|
Last change
on this file since 3210 was
3193,
checked in by afalco, 22 months ago
|
|
Pluto PCM:
Added .def examples for Pluto-generic.
AF
|
|
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 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),save :: datadir='/u/lmdz/WWW/planets/LMDZ.GENERIC/datagcm' |
|---|
| 13 | !$OMP THREADPRIVATE(datadir) |
|---|
| 14 | |
|---|
| 15 | ! Subdirectories of 'datadir': |
|---|
| 16 | |
|---|
| 17 | ! surfdir stores planetary topography, albedo, etc. (surface.nc files) |
|---|
| 18 | character(len=12),parameter :: surfdir="surface_data" |
|---|
| 19 | |
|---|
| 20 | ! aerdir stores aerosol properties files (optprop_*dat files) |
|---|
| 21 | character(LEN=18),parameter :: aerdir="aerosol_properties" |
|---|
| 22 | |
|---|
| 23 | ! Data haze properties |
|---|
| 24 | character(len=300),save :: hazeprop |
|---|
| 25 | |
|---|
| 26 | end module datafile_mod |
|---|
| 27 | !----------------------------------------------------------------------- |
|---|
Note: See
TracBrowser
for help on using the repository browser.