Changeset 3924 for LMDZ6/trunk/makelmdz_fcm
- Timestamp:
- Jun 8, 2021, 6:33:45 PM (5 years ago)
- File:
-
- 1 edited
-
LMDZ6/trunk/makelmdz_fcm (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/makelmdz_fcm
r3911 r3924 40 40 full='' 41 41 libphy=false 42 isotopes=false 43 isoverif=false 44 diagiso=false 45 isotrac=false 42 46 43 47 arch_defined="FALSE" … … 104 108 [-dust true/false] : compile with/without the dust package by Boucher and co (default: false) 105 109 [-strataer true/false] : compile with/without the strat aer package by Boucher and co (default: false) 110 [-isotopes true/false] : compile with/without water isotopes in the physics 111 [-isoverif true/false] : compile with/without verifications for water isotopes in the physics 112 [-diagiso true/false] : compile with/without special diagnostics for water isotopes in the physics 113 [-isotrac true/false] : compile with/without tracers of water isotopes in the physics 106 114 [-parallel none/mpi/omp/mpi_omp] : parallelism (default: none) : mpi, openmp or mixted mpi_openmp 107 115 [-g GRI] : grid configuration in dyn3d/GRI_xy.h (default: reg, inclues a zoom) … … 169 177 chimie="$2" ; shift ; shift ;; 170 178 179 "-isotopes") 180 isotopes="$2" ; shift ; shift ;; 181 182 "-isoverif") 183 isoverif="$2" ; shift ; shift ;; 184 185 "-diagiso") 186 diagiso="$2" ; shift ; shift ;; 187 188 "-isotrac") 189 isotrac="$2" ; shift ; shift ;; 190 171 191 "-parallel") 172 192 parallel="$2" ; shift ; shift ;; … … 341 361 INCLUDE="$INCLUDE -I${INCA_INCDIR}" 342 362 LIB="$LIB -L${INCA_LIBDIR} -lchimie" 363 fi 364 365 if [[ "$isotopes" == "true" ]] 366 then 367 CPP_KEY="$CPP_KEY ISO" 368 fi 369 370 if [[ "$isoverif" == "true" ]] 371 then 372 CPP_KEY="$CPP_KEY ISOVERIF" 373 fi 374 375 if [[ "$diagiso" == "true" ]] 376 then 377 CPP_KEY="$CPP_KEY DIAGISO" 378 fi 379 380 if [[ "$isotrac" == "true" ]] 381 then 382 CPP_KEY="$CPP_KEY ISOTRAC" 343 383 fi 344 384 … … 657 697 fi 658 698 659 if [[ $libphy == "true" ]] 699 if [[ "$isotopes" == "true" ]] 700 then 701 SUFF_NAME=${SUFF_NAME}_iso 702 fi 703 if [[ "$isoverif" == "true" ]] 704 then 705 SUFF_NAME=${SUFF_NAME}_isoverif 706 fi 707 if [[ "$isotrac" == "true" ]] 708 then 709 SUFF_NAME=${SUFF_NAME}_isotrac 710 fi 711 if [[ "$diagiso" == "true" ]] 712 then 713 SUFF_NAME=${SUFF_NAME}_diagiso 714 fi 715 716 if [[ $libphy == "true" ]]x 660 717 then 661 718 # special case where we compile only the physics
Note: See TracChangeset
for help on using the changeset viewer.
