Ignore:
Timestamp:
Nov 29, 2018, 4:47:07 PM (6 years ago)
Author:
slebonnois
Message:

SL: VENUS, ajout des modifs apportees par Thomas Navarro pour la parametrisation des ondes de gravite orographiques

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.VENUS/libf/phyvenus/gwstress.F

    r1530 r2047  
    55     *         , prho  , pstab , pvph  , pstd, psig
    66     *         , pmea , ppic , pval  , ptfr  , ptau 
    7      *         , pgeom1 , pgamma , pd1  , pd2   , pdmod , pnu )
     7     *         , pgeom1 , pgamma , pd1  , pd2   , pdmod , pnu
     8     *         , zeff )
    89c
    910c**** *gwstress*
     
    7475      real pmea(nlon),ppic(nlon),pval(nlon)
    7576      real pdmod(nlon)
     77      real zeff(nlon) ! effective height seen by the flow when there is blocking
    7678c
    7779c-----------------------------------------------------------------------
     
    7981c*       0.2   local arrays
    8082c              ------------
    81 c  zeff--real: effective height seen by the flow when there is blocking
    8283
    8384      integer jl
    84       real zeff 
    8585c
    8686c-----------------------------------------------------------------------
     
    101101c
    102102c
     103      zeff = 0.
    103104      do 301 jl=kidia,kfdia
    104105      if(ktest(jl).eq.1) then
     
    106107c  effective mountain height above the blocked flow
    107108 
    108          zeff=ppic(jl)-pval(jl)
     109         zeff(jl)=ppic(jl)-pval(jl)
    109110         if(kkenvh(jl).lt.klev)then
    110          zeff=amin1(GFRCRIT*pvph(jl,klev+1)/sqrt(pstab(jl,klev+1))
    111      c              ,zeff)
     111         zeff(jl)=amin1(GFRCRIT*pvph(jl,klev+1)/sqrt(pstab(jl,klev+1))
     112     c              ,zeff(jl))
    112113         endif
    113114
     
    116117     *     *psig(jl)*pdmod(jl)/4./pstd(jl)
    117118     *     *pvph(jl,klev+1)*sqrt(pstab(jl,klev+1))
    118      *     *zeff**2
     119     *     *zeff(jl)**2
    119120
    120121
Note: See TracChangeset for help on using the changeset viewer.