Ignore:
Timestamp:
Aug 31, 2012, 9:52:22 AM (12 years ago)
Author:
acolaitis
Message:

Added a low threshold subgrid gustiness in richardson computations for the LES, after observations of unreallistically high HFX values for very low winds conditions.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/vdif_cd.F

    r648 r765  
    11      SUBROUTINE vdif_cd(ngrid,nlay,pz0,
    2      &           pg,pz,pu,pv,wstar,pts,ph,pcdv,pcdh)
     2     &           pg,pz,pu,pv,wstar,pts,ph,pcdv,pcdh
     3#ifdef MESOSCALE
     4     &                ,flag_LES
     5#endif
     6     &                  )
    37      IMPLICIT NONE
    48c=======================================================================
     
    4852      REAL, INTENT(IN) :: wstar(ngrid)
    4953      REAL, INTENT(OUT) :: pcdv(ngrid),pcdh(ngrid) ! momentum and heat drag coefficient
     54
     55#ifdef MESOSCALE
     56      LOGICAL, INTENT(IN) :: flag_LES     !! pour LES avec isfflx!=0
     57#endif
    5058
    5159c   Local:
     
    152160          zu2(ig)=pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1)
    153161     &     + (log(1.+0.7*wstar(ig) + 2.3*wstar(ig)**2))**2
    154 
     162#ifdef MESOSCALE
     163          if(flag_LES) then
     164             zu2(ig)=MAX(zu2(ig),1.)
     165          endif
     166#endif
    155167!       zu2(ig)=pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1) + (0.5*wstar(ig))**2
    156168
Note: See TracChangeset for help on using the changeset viewer.