Ignore:
Timestamp:
Jul 19, 2024, 5:41:58 PM (4 months ago)
Author:
abarral
Message:

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/lmdz_thermcell_down.F90

    r4590 r5082  
    7474      do ig=1,ngrid
    7575         !if ( lmax(ig) > nlay - 2 ) stop "les thermiques montent trop haut"
    76          if (ilay.le.lmax(ig) .and. lmax(ig)>1 ) then
     76         if (ilay<=lmax(ig) .and. lmax(ig)>1 ) then
    7777            fdn(ig,ilay)=fdn(ig,ilay+1)+edn(ig,ilay)-ddn(ig,ilay)
    7878            if ( fdn(ig,ilay)+ddn(ig,ilay) > 0. ) then
     
    9090   do ilay=1,nlay,1
    9191      do ig=1,ngrid
    92          if (ilay.lt.lmax(ig) .and. lmax(ig)>1) then
     92         if (ilay<lmax(ig) .and. lmax(ig)>1) then
    9393            fup(ig,ilay+1)=fup(ig,ilay)+eup(ig,ilay)-dup(ig,ilay)
    9494            if (fup(ig,ilay+1)+dup(ig,ilay) > 0.) then
     
    131131         !!!!ATTENTION HYPOTHESE de FLUX COMPENSATOIRE DESCENDANT ET DONC comme schema amont on va chercher trac au dessus!!!!!
    132132         !!!! tentative de prise en compte d'un flux compensatoire montant  !!!!
    133          if (fup(ig,ilay)-fdn(ig,ilay) .lt. 0.) then
     133         if (fup(ig,ilay)-fdn(ig,ilay) < 0.) then
    134134            call abort_physic("thermcell_updown_dq", 'flux compensatoire '&
    135135                 // 'montant, cas non traite par thermcell_updown_dq', 1)
     
    164164     do ilay=2,nlay,1
    165165       do ig=1,ngrid
    166          if (fup(ig,ilay)-fdn(ig,ilay) .lt. 0.) then
     166         if (fup(ig,ilay)-fdn(ig,ilay) < 0.) then
    167167            call abort_physic("thermcell_updown_dq", 'flux compensatoire ' &
    168168                 // 'montant, cas non traite par thermcell_updown_dq', 1)
     
    193193     do ilay=nlay-1,1,-1
    194194       do ig=1,ngrid
    195          if((fup(ig,ilay)-fdn(ig,ilay)) .lt. 0) then
     195         if((fup(ig,ilay)-fdn(ig,ilay)) < 0) then
    196196            write(*,*) 'flux compensatoire montant, cas non traite par thermcell_updown_dq dans le cas d une resolution implicite, ilay : ', ilay
    197197            call abort_physic("thermcell_updown_dq", "", 1)
     
    273273   do ilay=nlay,1,-1
    274274      do ig=1,ngrid
    275          if (ilay.le.lmax(ig).and.lmax(ig)>1) then
     275         if (ilay<=lmax(ig).and.lmax(ig)>1) then
    276276            edn(ig,ilay)=fact_thermals_down*dup(ig,ilay)
    277277            ddn(ig,ilay)=fact_thermals_down*eup(ig,ilay)
Note: See TracChangeset for help on using the changeset viewer.