Ignore:
Timestamp:
Jan 5, 2021, 10:54:11 AM (3 years ago)
Author:
evignon
Message:

Ajout INLANDSIS phase 2: mise à jour des makefile et creation du
inlandsis.def

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/makelmdz_fcm

    r3647 r3793  
    2424veget=false
    2525sisvat=false
     26inlandsis=false
    2627rrtm=false
    2728dust=false
     
    99100[-cospv2 true/false]    : compile with/without cospv2 package (default: false)
    100101[-sisvat true/false]  : compile with/without sisvat package (default: false)
     102[-inlandsis true/false]  : compile with/without inlandsis package (default: false)
    101103[-rrtm true/false]    : compile with/without rrtm package (default: false)
    102104[-dust true/false]    : compile with/without the dust package by Boucher and co (default: false)
     
    151153      "-sisvat")
    152154          sisvat="$2" ; shift ; shift ;;
     155
     156      "-inlandsis")
     157          inlandsis="$2" ; shift ; shift ;;
    153158
    154159      "-rrtm")
     
    415420fi
    416421
     422if [[ "$inlandsis" == "true" ]]
     423then
     424   CPP_KEY="$CPP_KEY CPP_INLANDSIS"
     425   SISVAT_PATH="$LIBFGCM/%PHYS/inlandsis"
     426fi
     427
     428
    417429if [[ "$rrtm" == "true" ]]
    418430then
     
    681693echo "%STRATAER      $STRATAER_PATH" >> $config_fcm
    682694echo "%SISVAT        $SISVAT_PATH"   >> $config_fcm
     695echo "%INLANDSIS     $INLANDSIS_PATH" >> $config_fcm
    683696echo "%COSP          $COSP_PATH"     >> $config_fcm
    684697echo "%CPP_KEY       $CPP_KEY"       >> $config_fcm
Note: See TracChangeset for help on using the changeset viewer.