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/dyn3d_common/pentes_ini.F

    r2600 r5082  
    7474c     if (mode.eq.1.or.mode.eq.3) then
    7575c     if (mode.eq.1) then
    76       if (mode.ge.1) then
     76      if (mode>=1) then
    7777        lati=2
    7878        latf=jjm
     
    187187c      enddo
    188188CCC
    189        if(mode.eq.2) then
     189       if(mode==2) then
    190190          do l=1,llm
    191191            s0s=0.
     
    247247      endif
    248248
    249       if (mode.eq.4) then
     249      if (mode==4) then
    250250         do l=1,llm
    251251            do i=1,iip1
     
    261261       call advx( limit,.5*dtvr,pbaru,sm,s0,sx,sy,sz,lati,latf)
    262262c     call minmaxq(zq,1.e33,-1.e33,'avant advy     ')
    263       if (mode.eq.4) then
     263      if (mode==4) then
    264264         do l=1,llm
    265265            do i=1,iip1
     
    282282       call limz(s0,sz,sm,pente_max)
    283283       call advz( limit,dtvr,w,sm,s0,sx,sy,sz )
    284       if (mode.eq.4) then
     284      if (mode==4) then
    285285         do l=1,llm
    286286            do i=1,iip1
     
    306306
    307307c     call minmaxq(zq,1.e33,-1.e33,'avant advx     ')
    308       if (mode.eq.4) then
     308      if (mode==4) then
    309309         do l=1,llm
    310310            do i=1,iip1
     
    346346c Traitements specifiques au pole
    347347
    348       if(mode.ge.1) then
     348      if(mode>=1) then
    349349      DO l=1,llm
    350350c   filtrages aux poles
     
    361361            q( i,jjp1,llm+1-l,0)=qps
    362362         enddo
    363          if(mode.eq.3) then
     363         if(mode==3) then
    364364            dyn1=0.
    365365            dys1=0.
     
    382382            enddo
    383383         endif
    384          if(mode.eq.1) then
     384         if(mode==1) then
    385385c   on filtre les valeurs au bord de la "grande maille pole"
    386386            dyn1=0.
     
    440440             DO j = 1,jjp1
    441441              DO i = 1,iip1
    442                 IF (q(i,j,l,0).lt.0.)  THEN
     442                IF (q(i,j,l,0)<0.)  THEN
    443443c                    PRINT*,'------------ BIP-----------'
    444444c                    PRINT*,'Q0(',i,j,l,')=',q(i,j,l,0)
     
    459459          do j=1,jjp1
    460460           do i=1,iip1
    461              if(q(i,j,l,0).lt.qmin)
     461             if(q(i,j,l,0)<qmin)
    462462     ,       print*,'apres pentes, s0(',i,',',j,',',l,')=',q(i,j,l,0)
    463463           enddo
Note: See TracChangeset for help on using the changeset viewer.