Changeset 2631 for LMDZ5/trunk/makelmdz


Ignore:
Timestamp:
Sep 22, 2016, 6:34:57 PM (8 years ago)
Author:
fhourdin
Message:

Modification de makelmdz et makelmdz_fcm pour les aerosols

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/makelmdz

    r2417 r2631  
    2727sisvat=false
    2828rrtm=false
     29rrtm=false
     30dust=false
    2931full=""
    3032
     
    110112[-sisvat true/false]  : compile with/without sisvat package (default: false)
    111113[-rrtm true/false]    : compile with/without rrtm package (default: false)
     114[-dust true/false]    : compile with/without the dust package from Boucher et al. (default: false)
    112115[-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp
    113116[-g GRI]                   : grid configuration in dyn3d/GRI_xy.h  (default: reg, inclues a zoom)
     
    173176      "-rrtm")
    174177          rrtm="$2" ; shift ; shift ;;
     178
     179      "-dust")
     180          dust="$2" ; shift ; shift ;;
    175181     
    176182      "-mem")
     
    447453   CPP_KEY="$CPP_KEY CPP_RRTM"
    448454   src_dirs="$src_dirs phy${physique}/rrtm"
     455fi
     456
     457if [[ "$dust" == "true" ]]
     458then
     459   CPP_KEY="$CPP_KEY CPP_Dust"
     460   src_dirs="$src_dirs phy${physique}/Dust"
    449461fi
    450462
Note: See TracChangeset for help on using the changeset viewer.