Ignore:
Timestamp:
12/15/14 09:22:51 (10 years ago)
Author:
millour
Message:

Add the possibility to have a sponge acting on the temperature
in the physics, using flag "callradsponge=.true.". The sponge
vertical extention is the same as the sponge layer in the dynamics.
EM

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/branches/SATURN_DYNAMICO/LMDZ.COMMON/libf/phystd/physiq.F90

    r298 r310  
    280280      real zdvmolvis(ngrid,nlayer) 
    281281      real zdqmoldiff(ngrid,nlayer,nq) 
     282      real dtradsponge(ngrid,nlayer) ! (K/s) 
    282283 
    283284!     Local variables for local calculations: 
     
    10881089!------------------------- 
    10891090 
     1091        if (callradsponge) then 
     1092          call radsponge(ngrid,nlayer,pplay,pplev,pt,pdt,dtphys,dtradsponge) 
     1093          pdt(1:ngrid,1:nlayer)=pdt(1:ngrid,1:nlayer)+dtradsponge(1:ngrid,1:nlayer) 
     1094        endif 
     1095 
    10901096      endif ! of if (callrad) 
    10911097 
Note: See TracChangeset for help on using the changeset viewer.