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

Last change on this file since 3523 was 1520, checked in by emillour, 9 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
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:
[1520]12      character(len=300),save :: datadir='/u/lmdz/WWW/planets/LMDZ.GENERIC/datagcm'
13!$OMP THREADPRIVATE(datadir)
[1470]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"
[374]22
23      end module datafile_mod
[135]24!-----------------------------------------------------------------------
Note: See TracBrowser for help on using the repository browser.