Changeset 2631 for LMDZ5/trunk
- Timestamp:
- Sep 22, 2016, 6:34:57 PM (8 years ago)
- Location:
- LMDZ5/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/makelmdz
r2417 r2631 27 27 sisvat=false 28 28 rrtm=false 29 rrtm=false 30 dust=false 29 31 full="" 30 32 … … 110 112 [-sisvat true/false] : compile with/without sisvat package (default: false) 111 113 [-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) 112 115 [-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp 113 116 [-g GRI] : grid configuration in dyn3d/GRI_xy.h (default: reg, inclues a zoom) … … 173 176 "-rrtm") 174 177 rrtm="$2" ; shift ; shift ;; 178 179 "-dust") 180 dust="$2" ; shift ; shift ;; 175 181 176 182 "-mem") … … 447 453 CPP_KEY="$CPP_KEY CPP_RRTM" 448 454 src_dirs="$src_dirs phy${physique}/rrtm" 455 fi 456 457 if [[ "$dust" == "true" ]] 458 then 459 CPP_KEY="$CPP_KEY CPP_Dust" 460 src_dirs="$src_dirs phy${physique}/Dust" 449 461 fi 450 462 -
LMDZ5/trunk/makelmdz_fcm
r2417 r2631 25 25 sisvat=false 26 26 rrtm=false 27 dust=false 27 28 chimie=false 28 29 parallel=none … … 46 47 PHY_COMMON_PATH=$LMDGCM/.void_dir 47 48 RRTM_PATH=$LMDGCM/.void_dir 49 DUST_PATH=$LMDGCM/.void_dir 48 50 SISVAT_PATH=$LMDGCM/.void_dir 49 51 COSP_PATH=$LMDGCM/.void_dir … … 87 89 [-sisvat true/false] : compile with/without sisvat package (default: false) 88 90 [-rrtm true/false] : compile with/without rrtm package (default: false) 91 [-dust true/false] : compile with/without the dust package by Boucher and co (default: false) 89 92 [-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp 90 93 [-g GRI] : grid configuration in dyn3d/GRI_xy.h (default: reg, inclues a zoom) … … 138 141 "-rrtm") 139 142 rrtm="$2" ; shift ; shift ;; 143 144 "-dust") 145 dust="$2" ; shift ; shift ;; 140 146 141 147 "-chimie") … … 351 357 fi 352 358 359 if [[ "$dust" == "true" ]] 360 then 361 CPP_KEY="$CPP_KEY CPP_Dust" 362 DUST_PATH="$LIBFGCM/%PHYS/Dust" 363 fi 364 353 365 if [[ $io == ioipsl ]] 354 366 then … … 580 592 echo "%DYN_PHYS_SUB $DYN_PHYS_SUB_PATH" >> $config_fcm 581 593 echo "%RRTM $RRTM_PATH" >> $config_fcm 594 echo "%DUST $DUST_PATH" >> $config_fcm 582 595 echo "%SISVAT $SISVAT_PATH" >> $config_fcm 583 596 echo "%COSP $COSP_PATH" >> $config_fcm
Note: See TracChangeset
for help on using the changeset viewer.