Ignore:
Timestamp:
Oct 30, 2016, 4:35:25 PM (9 years ago)
Author:
oboucher
Message:

Adding a module for stratospheric aerosols with a bin scheme.
The module gets activated with -strataer true compiling option.
May not quite work yet, more testing needed, but should not affect
the rest of LMDz as everything is under a CPP_StratAer key.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/makelmdz_fcm

    r2631 r2690  
    2626rrtm=false
    2727dust=false
     28strataer=false
    2829chimie=false
    2930parallel=none
     
    4849RRTM_PATH=$LMDGCM/.void_dir
    4950DUST_PATH=$LMDGCM/.void_dir
     51STRATAER_PATH=$LMDGCM/.void_dir
    5052SISVAT_PATH=$LMDGCM/.void_dir
    5153COSP_PATH=$LMDGCM/.void_dir
     
    9092[-rrtm true/false]    : compile with/without rrtm package (default: false)
    9193[-dust true/false]    : compile with/without the dust package by Boucher and co (default: false)
     94[-strataer true/false]    : compile with/without the strat aer package by Boucher and co (default: false)
    9295[-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp
    9396[-g GRI]                   : grid configuration in dyn3d/GRI_xy.h  (default: reg, inclues a zoom)
     
    144147      "-dust")
    145148          dust="$2" ; shift ; shift ;;
     149
     150      "-strataer")
     151          strataer="$2" ; shift ; shift ;;
    146152
    147153      "-chimie")
     
    363369fi
    364370
     371if [[ "$strataer" == "true" ]]
     372then
     373   CPP_KEY="$CPP_KEY CPP_StratAer"
     374   STRATAER_PATH="$LIBFGCM/%PHYS/StratAer"
     375fi
     376
    365377if [[ $io == ioipsl ]]
    366378then
     
    593605echo "%RRTM          $RRTM_PATH"     >> $config_fcm
    594606echo "%DUST          $DUST_PATH"     >> $config_fcm
     607echo "%STRATAER      $STRATAER_PATH" >> $config_fcm
    595608echo "%SISVAT        $SISVAT_PATH"   >> $config_fcm
    596609echo "%COSP          $COSP_PATH"     >> $config_fcm
Note: See TracChangeset for help on using the changeset viewer.