Changeset 3798 for LMDZ6/branches/Ocean_skin/makelmdz_fcm
- Timestamp:
- Jan 11, 2021, 11:24:08 PM (4 years ago)
- Location:
- LMDZ6/branches/Ocean_skin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Ocean_skin
-
LMDZ6/branches/Ocean_skin/makelmdz_fcm
r3673 r3798 24 24 veget=false 25 25 sisvat=false 26 inlandsis=false 26 27 rrtm=false 27 28 dust=false … … 45 46 46 47 LMDGCM=`/bin/pwd` 47 LIBOGCM=$ LMDGCM/libo48 LIBOGCM=$WORK/build/LMDZ_ocean_skin 48 49 LIBFGCM=$LMDGCM/libf 49 50 DYN_COMMON_PATH=$LIBFGCM/dyn3d_common … … 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 … … 681 693 echo "%STRATAER $STRATAER_PATH" >> $config_fcm 682 694 echo "%SISVAT $SISVAT_PATH" >> $config_fcm 695 echo "%INLANDSIS $INLANDSIS_PATH" >> $config_fcm 683 696 echo "%COSP $COSP_PATH" >> $config_fcm 684 697 echo "%CPP_KEY $CPP_KEY" >> $config_fcm … … 703 716 ./build_gcm ${fcm_path} -j $job $full 704 717 718 err=$? 719 # Check error message from fcm build 720 if [ $err != 0 ] ; then 721 exit 1 722 fi 723 705 724 rm -rf tmp_src 706 725 rm -rf config
Note: See TracChangeset
for help on using the changeset viewer.