Changeset 3359 for LMDZ6/trunk
- Timestamp:
- Jul 4, 2018, 4:48:30 PM (6 years ago)
- Location:
- LMDZ6/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/makegcm
r2014 r3359 39 39 set io=ioipsl 40 40 set cosp=false 41 set cosp2=false 41 42 set sisvat=false 42 43 … … 200 201 set adjnt="" 201 202 set lcosp="" 203 set lcosp2="" 202 204 set opt_dep="" 203 205 set libchimie="" … … 442 444 Pour compiler avec cosp 443 445 446 -cosp2 true|false 447 Pour compiler avec cosp2 448 444 449 -filtre filtre 445 450 Pour choisir le filtre en longitude dans les regions polaires. … … 500 505 case -cosp 501 506 set cosp="$2"; shift ; shift ; goto top 507 508 case -cosp2 509 set cosp2="$2"; shift ; shift ; goto top 502 510 503 511 case -sisvat … … 579 587 endif 580 588 589 if ( "$cosp2" == 'true' ) then 590 set cppflags="$cppflags -DCPP_COSP2" 591 set include="$include"' -I$(LIBF)/cosp2 ' 592 set opt_dep="$opt_dep cosp2" 593 set lcosp2="-lcosp2 " 594 if ( $XNEC || $X8BRODIE || $X6NEC) then 595 set lcosp2="-lsxcosp2 " 596 endif 597 set opt_link="$lcosp2 $opt_link" 598 endif 599 581 600 if ( "$sisvat" == 'true' ) then 582 601 set cppflags="$cppflags -DCPP_SISVAT" … … 1085 1104 L_ADJNT="$adjnt" \ 1086 1105 L_COSP="$lcosp" \ 1106 L_COSP2="$lcosp2" \ 1087 1107 L_CHIMIE="$libchimie" \ 1088 1108 LOCAL_DIR="$localdir" \ … … 1112 1132 L_ADJNT="$adjnt" \ 1113 1133 L_COSP="$lcosp" \ 1134 L_COSP2="$lcosp2" \ 1114 1135 L_CHIMIE="$libchimie" \ 1115 1136 LOCAL_DIR="$localdir" \ -
LMDZ6/trunk/makelmdz
r3232 r3359 25 25 fcm_path=none 26 26 cosp=false 27 cosp2=false 27 28 sisvat=false 28 29 rrtm=false … … 116 117 [-chimie INCA/false] : with INCA chemistry model or without (default: false) 117 118 [-cosp true/false] : compile with/without cosp package (default: false) 119 [-cosp2 true/false] : compile with/without cosp2 package (default: false) 118 120 [-sisvat true/false] : compile with/without sisvat package (default: false) 119 121 [-rrtm true/false] : compile with/without rrtm package (default: false) … … 178 180 "-cosp") 179 181 cosp="$2" ; shift ; shift ;; 182 183 "-cosp2") 184 cosp2="$2" ; shift ; shift ;; 180 185 181 186 "-sisvat") … … 483 488 INCLUDE="$INCLUDE"' -I$(LIBF)/'phy${physique}'/cosp' 484 489 fi 490 491 if [[ "$cosp2" == "true" ]] 492 then 493 CPP_KEY="$CPP_KEY CPP_COSP2" 494 src_dirs="$src_dirs phy${physique}/cosp2" 495 INCLUDE="$INCLUDE"' -I$(LIBF)/'phy${physique}'/cosp2' 496 fi 497 485 498 486 499 if [[ "$sisvat" == "true" ]] … … 758 771 L_ADJNT=$adjnt \ 759 772 L_COSP="$lcosp" \ 773 L_COSP2="$lcosp2" \ 760 774 L_CHIMIE="$libchimie" \ 761 775 LOCAL_DIR="$localdir" \ … … 791 805 L_ADJNT=$adjnt \ 792 806 L_COSP="$lcosp" \ 807 L_COSP2="$lcosp2" \ 793 808 L_CHIMIE="$libchimie" \ 794 809 LOCAL_DIR="$localdir" \
Note: See TracChangeset
for help on using the changeset viewer.