source: trunk/LMDZ.GENERIC/libf/phystd/datafile_mod.F90 @ 1476

Last change on this file since 1476 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
RevLine 
[135]1!-----------------------------------------------------------------------
[374]2      module datafile_mod
[1470]3!  Address of the directory containing tables of data needed by the GCM
[374]4      implicit none
[135]5
[1470]6      ! Main directory: 'datadir':
[716]7      ! Default for Berserker @ UChicago:
8!      character(len=300) :: datadir='/home/rwordsworth/datagcm'
[374]9      ! Default for Gnome Idataplex:
[716]10!      character(len=300) :: datadir='/san/home/rdword/gcm/datagcm'
[374]11      ! Default for LMD machines:
[1470]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"
[374]21
22      end module datafile_mod
[135]23!-----------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.