Changeset 5468 for LMDZ6


Ignore:
Timestamp:
Jan 9, 2025, 4:42:44 PM (28 hours ago)
Author:
fhourdin
Message:

New subotpion iflag_pbl_split=20 (or 21).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/physiq_mod.F90

    r5458 r5468  
    18351835   
    18361836!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
     1837   CALL iophys_ini(pdtphys,nsurfwind) ! replay automatic include  ! replay automatic include
    18371838       CALL wake_ini(rg,rd,rv,prt_level)
    18381839       CALL yamada_ini(klon,lunout,prt_level)
     
    37183719             !  poches, la tendance moyenne associ\'ee doit etre
    37193720             !  multipliee par la fraction surfacique qu'ils couvrent.
     3721             IF (mod(iflag_pbl_split/10,10) == 1) THEN
     3722                ! On tient compte du splitting pour modifier les profils deltatq/T des poches
     3723                DO k=1,klev
     3724                   DO i=1,klon
     3725                      d_deltat_the(i,k) = - d_t_ajs(i,k)
     3726                      d_deltaq_the(i,k) = - d_q_ajs(i,k)
     3727                   ENDDO
     3728                ENDDO
     3729             ELSE
     3730                d_deltat_the(:,:) = 0.
     3731                d_deltaq_the(:,:) = 0.
     3732             ENDIF
     3733
    37203734             DO k=1,klev
    37213735                DO i=1,klon
    3722                    !
    3723                    d_deltat_the(i,k) = - d_t_ajs(i,k)
    3724                    d_deltaq_the(i,k) = - d_q_ajs(i,k)
    3725                    !
    37263736                   d_u_ajs(i,k) = d_u_ajs(i,k)*(1.-wake_s(i))
    37273737                   d_v_ajs(i,k) = d_v_ajs(i,k)*(1.-wake_s(i))
    37283738                   d_t_ajs(i,k) = d_t_ajs(i,k)*(1.-wake_s(i))
    37293739                   d_q_ajs(i,k) = d_q_ajs(i,k)*(1.-wake_s(i))
    3730                    !
    37313740                ENDDO
    37323741             ENDDO
Note: See TracChangeset for help on using the changeset viewer.