Changeset 3793 for LMDZ6/trunk/makelmdz


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

    r3574 r3793  
    2828cospv2=false
    2929sisvat=false
     30inlandsis=false
    3031rrtm=false
    3132rrtm=false
     
    122123[-cospv2 true/false]    : compile with/without cospv2 package (default: false)
    123124[-sisvat true/false]  : compile with/without sisvat package (default: false)
     125[-inlandsis true/false]  : compile with/without inlandsis package (default: false)
    124126[-rrtm true/false]    : compile with/without rrtm package (default: false)
    125127[-dust true/false]    : compile with/without the dust package from Boucher et al. (default: false)
     
    192194      "-sisvat")
    193195          sisvat="$2" ; shift ; shift ;;
    194      
     196
     197      "-inlandsis")
     198          inlandsis="$2" ; shift ; shift ;; 
     199
    195200      "-rrtm")
    196201          rrtm="$2" ; shift ; shift ;;
     
    518523   src_dirs="$src_dirs phy${physique}/sisvat"
    519524fi
     525
     526
     527if [[ "$inlandsis" == "true" ]]
     528then
     529   CPP_KEY="$CPP_KEY CPP_INLANDSIS"
     530   src_dirs="$src_dirs phy${physique}/inlandsis"
     531fi
     532
    520533
    521534if [[ "$rrtm" == "true" ]]
Note: See TracChangeset for help on using the changeset viewer.