Ignore:
Timestamp:
Jul 22, 2024, 9:29:09 PM (2 months ago)
Author:
abarral
Message:

Replace most uses of CPP_DUST by the corresponding logical defined in lmdz_cppkeys_wrapper.F90
Convert several files from .F to .f90 to allow Dust to compile w/o rrtm/ecrad
Create lmdz_yoerad.f90
(lint) Remove "!" on otherwise empty line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/misc/lmdz_cppkeys_wrapper.F90

    r5098 r5099  
    99!      INCA      -> CPPKEY_INCA
    1010!      CPP_StratAer-> CPPKEY_STRATAER
     11!      CPP_DUST  -> CPPKEY_DUST
    1112! ---------------------------------------------
    1213
     
    1516  USE netcdf, ONLY: nf90_float, nf90_double
    1617  IMPLICIT NONE; PRIVATE
    17   PUBLIC nf90_format, CPPKEY_PHYS, CPPKEY_INCA, CPPKEY_STRATAER
     18  PUBLIC nf90_format, CPPKEY_PHYS, CPPKEY_INCA, CPPKEY_STRATAER, CPPKEY_DUST
    1819
    1920#ifdef NC_DOUBLE
     
    4142#endif
    4243
     44#ifdef CPP_DUST
     45  LOGICAL, PARAMETER :: CPPKEY_DUST = .TRUE.
     46#else
     47  LOGICAL, PARAMETER :: CPPKEY_DUST = .FALSE.
     48#endif
     49
    4350END MODULE lmdz_cppkeys_wrapper
Note: See TracChangeset for help on using the changeset viewer.