Changeset 2194


Ignore:
Timestamp:
Dec 13, 2019, 11:37:38 AM (5 years ago)
Author:
slebonnois
Message:

SL: ajustement commit precedent pour la microphysique de Sabrina

Location:
trunk/LMDZ.VENUS/libf/phyvenus
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.VENUS/libf/phyvenus/physiq_mod.F

    r2193 r2194  
    11131113!        tendency due to sedimentation
    11141114
    1115                do iq = nqmax - nmicro + 1,nqmax
    1116                   tr_seri(:,:,iq)  = tr_seri(:,:,iq) + d_tr_sed(:,:,iq)
     1115               do iq = nqmax-nmicro+1,nqmax
    11171116                  d_tr_sed(:,:,iq) = d_tr_sed(:,:,iq)/zctime
    11181117               end do
     
    11301129!        update tracers (sedimentation)
    11311130
     1131         if (ok_sedim) then
     1132            if (cl_scheme == 1) then
    11321133         tr_seri(:,:,i_h2so4liq) = tr_seri(:,:,i_h2so4liq)
    11331134     $                           + d_tr_sed(:,:,1)*dtime
    11341135         tr_seri(:,:,i_h2oliq)   = tr_seri(:,:,i_h2oliq)
    11351136     $                           + d_tr_sed(:,:,2)*dtime
     1137            else if (cl_scheme == 2) then
     1138         do iq = nqmax-nmicro+1,nqmax
     1139            tr_seri(:,:,iq) = tr_seri(:,:,iq) + d_tr_sed(:,:,iq)*dtime
     1140         end do
     1141            end if  ! cl_scheme
     1142         end if     ! ok_sedim
     1143!====================================================================
     1144! End Case 3: Full chemistry and/or clouds.
     1145!====================================================================
    11361146
    11371147         end if     ! tr_scheme
  • trunk/LMDZ.VENUS/libf/phyvenus/phytrac_chimie.F

    r2193 r2194  
    269269      end do
    270270
    271 !     liquid phase
     271!     liquid phase or moments
    272272
    273273      if (ok_cloud .and. cl_scheme == 1) then
     
    282282      end if
    283283
     284
     285      if (ok_cloud .and. cl_scheme == 2) then
     286         do iq = nqmax-nmicro+1,nqmax
     287            d_tr_chem(:,:,iq) = (ztrac(:,:,iq) - trac(:,:,iq))/pdtphys
     288         end do
     289      end if
     290
    284291      end subroutine phytrac_chimie
Note: See TracChangeset for help on using the changeset viewer.