Ignore:
Timestamp:
Feb 5, 2015, 12:29:37 PM (9 years ago)
Author:
fhourdin
Message:

Use of add_phys_tend to add the tendencies from radiation.
In order to control temperature range after radiation.

Utilisation de add_phys_tend pour ajouter les tendances
du rayonnement, de façon à contrôler les températures après
cet ajout.

File:
1 edited

Legend:

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

    r2193 r2194  
    34553455  ! Ajouter la tendance des rayonnements (tous les pas)
    34563456  !
    3457   DO k = 1, klev
    3458      DO i = 1, klon
    3459         t_seri(i,k) = t_seri(i,k) &
    3460              + (heat(i,k)-cool(i,k)) * dtime/RDAY
    3461      ENDDO
    3462   ENDDO
     3457  d_t_swr(:,:)=heat(:,:)*dtime/RDAY
     3458  d_t_lwr(:,:)=-cool(:,:)*dtime/RDAY
     3459  d_t_sw0(:,:)=heat0(:,:)*dtime/RDAY
     3460  d_t_lw0(:,:)=-cool0(:,:)*dtime/RDAY
     3461  CALL add_phys_tend(du0,dv0,d_t_swr,dq0,dql0,dqi0,paprs,'SW')
     3462  CALL add_phys_tend(du0,dv0,d_t_lwr,dq0,dql0,dqi0,paprs,'LW')
     3463
    34633464  !
    34643465  if (mydebug) then
Note: See TracChangeset for help on using the changeset viewer.