Changeset 3793 for LMDZ6/trunk
- Timestamp:
- Jan 5, 2021, 10:54:11 AM (4 years ago)
- Location:
- LMDZ6/trunk
- Files:
-
- 1 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/bld.cfg
r3441 r3793 109 109 bld::outfile_ext::mod .mod 110 110 bld::tool::SHELL /bin/bash 111 bld::tool::SHELL /usr/bin/bash -
LMDZ6/trunk/makegcm
r3491 r3793 42 42 set cospv2=false 43 43 set sisvat=false 44 set inlandsis=false 44 45 45 46 set FC_LINUX=gfortran … … 518 519 case -sisvat 519 520 set sisvat="$2" ; shift ; shift ; goto top 521 case -inlandsis 522 set inlandsis="$2" ; shift ; shift ; goto top 523 520 524 521 525 case -filtre … … 621 625 endif 622 626 627 if ( "$inlandsis" == 'true' ) then 628 set cppflags="$cppflags -DCPP_INLANDSIS" 629 endif 630 631 623 632 if ( "$physique" == 'nophys' ) then 624 633 set phys="L_PHY= LIBPHY=" -
LMDZ6/trunk/makelmdz
r3574 r3793 28 28 cospv2=false 29 29 sisvat=false 30 inlandsis=false 30 31 rrtm=false 31 32 rrtm=false … … 122 123 [-cospv2 true/false] : compile with/without cospv2 package (default: false) 123 124 [-sisvat true/false] : compile with/without sisvat package (default: false) 125 [-inlandsis true/false] : compile with/without inlandsis package (default: false) 124 126 [-rrtm true/false] : compile with/without rrtm package (default: false) 125 127 [-dust true/false] : compile with/without the dust package from Boucher et al. (default: false) … … 192 194 "-sisvat") 193 195 sisvat="$2" ; shift ; shift ;; 194 196 197 "-inlandsis") 198 inlandsis="$2" ; shift ; shift ;; 199 195 200 "-rrtm") 196 201 rrtm="$2" ; shift ; shift ;; … … 518 523 src_dirs="$src_dirs phy${physique}/sisvat" 519 524 fi 525 526 527 if [[ "$inlandsis" == "true" ]] 528 then 529 CPP_KEY="$CPP_KEY CPP_INLANDSIS" 530 src_dirs="$src_dirs phy${physique}/inlandsis" 531 fi 532 520 533 521 534 if [[ "$rrtm" == "true" ]] -
LMDZ6/trunk/makelmdz_fcm
r3647 r3793 24 24 veget=false 25 25 sisvat=false 26 inlandsis=false 26 27 rrtm=false 27 28 dust=false … … 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 SISVAT_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
Note: See TracChangeset
for help on using the changeset viewer.