Changeset 3851 for LMDZ6/branches/LMDZ-tracers/makelmdz_fcm
- Timestamp:
- Feb 22, 2021, 12:44:07 PM (4 years ago)
- Location:
- LMDZ6/branches/LMDZ-tracers
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/LMDZ-tracers
- Property svn:mergeinfo changed
-
LMDZ6/branches/LMDZ-tracers/makelmdz_fcm
r3647 r3851 24 24 veget=false 25 25 sisvat=false 26 inlandsis=false 26 27 rrtm=false 27 28 dust=false … … 64 65 ######################################################################## 65 66 66 CPP_KEY=" "67 CPP_KEY="IN_LMDZ" 67 68 INCLUDE="" 68 69 LIB="" … … 99 100 [-cospv2 true/false] : compile with/without cospv2 package (default: false) 100 101 [-sisvat true/false] : compile with/without sisvat package (default: false) 102 [-inlandsis true/false] : compile with/without inlandsis package (default: false) 101 103 [-rrtm true/false] : compile with/without rrtm package (default: false) 102 104 [-dust true/false] : compile with/without the dust package by Boucher and co (default: false) … … 151 153 "-sisvat") 152 154 sisvat="$2" ; shift ; shift ;; 155 156 "-inlandsis") 157 inlandsis="$2" ; shift ; shift ;; 153 158 154 159 "-rrtm") … … 415 420 fi 416 421 422 if [[ "$inlandsis" == "true" ]] 423 then 424 CPP_KEY="$CPP_KEY CPP_INLANDSIS" 425 INLANDSIS_PATH="$LIBFGCM/%PHYS/inlandsis" 426 fi 427 428 417 429 if [[ "$rrtm" == "true" ]] 418 430 then … … 629 641 then 630 642 SUFF_NAME=${SUFF_NAME}_orch 643 fi 644 645 if [[ $dust == "true" ]] 646 then 647 SUFF_NAME=${SUFF_NAME}_spla 631 648 fi 632 649 … … 681 698 echo "%STRATAER $STRATAER_PATH" >> $config_fcm 682 699 echo "%SISVAT $SISVAT_PATH" >> $config_fcm 700 echo "%INLANDSIS $INLANDSIS_PATH" >> $config_fcm 683 701 echo "%COSP $COSP_PATH" >> $config_fcm 684 702 echo "%CPP_KEY $CPP_KEY" >> $config_fcm
Note: See TracChangeset
for help on using the changeset viewer.