Ignore:
Timestamp:
Jul 16, 2015, 2:09:53 PM (9 years ago)
Author:
Laurent Fairhead
Message:

Special option for Dice 1D case with a new value of iflag_radia=2.
It allows to force LWUP computation via ground temperature
MPL

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ5/trunk/libf/phylmd/physiq.F90

    r2325 r2328  
    578578  !  REAL zxsnow(klon)
    579579  REAL zxsnow_dummy(klon)
     580  REAL zsav_tsol(klon)
    580581  !
    581582  REAL dist, rmu0(klon), fract(klon)
     
    35273528     endif
    35283529
     3530!
     3531!sonia :   If Iflag_radia >=2, pertubation of some variables input to radiation
     3532!(DICE)
     3533!
     3534      IF (iflag_radia .ge. 2) THEN
     3535        zsav_tsol (:) = zxtsol(:)
     3536        call perturb_radlwsw(zxtsol,iflag_radia)
     3537      ENDIF
     3538
    35293539     IF (aerosol_couple) THEN
    35303540#ifdef INCA
     
    36603670     ENDIF ! aerosol_couple
    36613671     itaprad = 0
     3672!
     3673!  If Iflag_radia >=2, reset pertubed variables
     3674!
     3675      IF (iflag_radia .ge. 2) THEN
     3676        zxtsol(:) = zsav_tsol (:)
     3677      ENDIF
    36623678  ENDIF ! MOD(itaprad,radpas)
    36633679  itaprad = itaprad + 1
Note: See TracChangeset for help on using the changeset viewer.