Ignore:
Timestamp:
Jun 20, 2019, 7:07:28 PM (5 years ago)
Author:
aboissinot
Message:

Thermal plume model parameters are now set in callphys.def and (re)add flag to choose between thermcell_dv2 or thermcell_dq to mix horizontal momentum.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/thermcell_main.F90

    r2143 r2144  
    424424!-------------------------------------------------------------------------------
    425425     
    426       CALL thermcell_dq(ngrid,nlay,ptimestep,fm0,entr0,detr0,masse,           &
    427       &                 zu,pduadj,zua,lmin)
    428        
    429       CALL thermcell_dq(ngrid,nlay,ptimestep,fm0,entr0,detr0,masse,           &
    430       &                 zv,pdvadj,zva,lmin)
    431      
    432 !      CALL thermcell_dv2(ngrid,nlay,ptimestep,fm0,entr0,detr0,masse,fraca,    &
    433 !      &                  zmax,zmin,pu,pv,pduadj,pdvadj,zua,zva)
     426      IF (dvimpl) THEN
     427         CALL thermcell_dv2(ngrid,nlay,ptimestep,fm0,entr0,detr0,masse,fraca,    &
     428         &                  zmax,zmin,pu,pv,pduadj,pdvadj,zua,zva)
     429      ELSE
     430         CALL thermcell_dq(ngrid,nlay,ptimestep,fm0,entr0,detr0,masse,           &
     431         &                 zu,pduadj,zua,lmin)
     432         CALL thermcell_dq(ngrid,nlay,ptimestep,fm0,entr0,detr0,masse,           &
     433         &                 zv,pdvadj,zva,lmin)
     434      ENDIF
     435     
    434436     
    435437RETURN
Note: See TracChangeset for help on using the changeset viewer.