|
Last change
on this file since 3638 was
1520,
checked in by emillour, 10 years ago
|
|
Generic GCM:
- Some fixes/adjustments to run using OpenMP (in the physics, best practice is to always have "save" variables, this of course includes all module variables, as "threadprivate").
EM
|
|
File size:
1019 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),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 | end module datafile_mod |
|---|
| 24 | !----------------------------------------------------------------------- |
|---|
Note: See
TracBrowser
for help on using the repository browser.