Ignore:
Timestamp:
Jan 16, 2012, 10:16:46 AM (13 years ago)
Author:
acolaitis
Message:

M 498 libf/phymars/calltherm_interface.F90
------------------> Added computation of wstar. Wmax is no longer an output.

M 498 libf/phymars/physiq.F
------------------> Minor changes.

M 498 libf/phymars/vdif_cd.F
------------------> Changed computation of bulk Richardson number to allow more unstable configurations.

M 498 libf/phymars/vdifc.F
------------------> Changed computation of surface conductance coefficients following a new approach. Comparisons with LES are much better.

File:
1 edited

Legend:

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

    r496 r499  
    11      SUBROUTINE vdif_cd(ngrid,nlay,pz0,
    2      &           pg,pz,pu,pv,wmax,pts,ph,pcdv,pcdh)
     2     &           pg,pz,pu,pv,wstar,pts,ph,pcdv,pcdh)
    33      IMPLICIT NONE
    44c=======================================================================
     
    4646      REAL, INTENT(IN) :: pu(ngrid,nlay),pv(ngrid,nlay)
    4747      REAL, INTENT(IN) :: pts(ngrid),ph(ngrid,nlay)
    48       REAL, INTENT(IN) :: wmax(ngrid)
     48      REAL, INTENT(IN) :: wstar(ngrid)
    4949      REAL, INTENT(OUT) :: pcdv(ngrid),pcdh(ngrid) ! momentum and heat drag coefficient
    5050
     
    146146c Richardson number formulation proposed by D.E. England et al. (1995)
    147147
    148 !         zu2=MAX(pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1),0.25*wmax(ig)**2)
     148!         zu2=MAX(pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1),0.25*wstar(ig)**2)
    149149!         zu2=pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1)
    150          zu2(ig)=MAX(pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1),wmax(ig)**2)
    151 !       zu2(ig)=pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1) + (0.5*wmax(ig))**2
    152 
    153                ! we add the wmax to simulate
     150         zu2(ig)=MAX(pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1),             &
     151     &      (0.3*wstar(ig))**2)
     152!       zu2(ig)=pu(ig,1)*pu(ig,1) + pv(ig,1)*pv(ig,1) + (0.5*wstar(ig))**2
     153
     154               ! we add the wstar to simulate
    154155               ! bulk Ri changes due to subgrid wind feeding the thermals
    155156
Note: See TracChangeset for help on using the changeset viewer.