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_dq.F90

    r4590 r5082  
    5757            zzm=masse(ig,k)/ptimestep
    5858            cfl=max(cfl,fm(ig,k)/zzm)
    59             if (entr(ig,k).gt.zzm) then
     59            if (entr(ig,k)>zzm) then
    6060               print*,'entr*dt>m,1',k,entr(ig,k)*ptimestep,masse(ig,k)
    6161               abort_message = 'entr dt > m, 1st'
     
    6868
    6969
    70       if (prt_level.ge.1) print*,'Q2 THERMCEL_DQ 0'
     70      if (prt_level>=1) print*,'Q2 THERMCEL_DQ 0'
    7171
    7272!   calcul du detrainement
     
    7676!           print*,'Q2 DQ ',detr(ig,k),fm(ig,k),entr(ig,k)
    7777!test
    78             if (detr(ig,k).lt.0.) then
     78            if (detr(ig,k)<0.) then
    7979               entr(ig,k)=entr(ig,k)-detr(ig,k)
    8080               detr(ig,k)=0.
     
    8282!     s         'f+1=',fm(ig,k+1),'e=',entr(ig,k),'d=',detr(ig,k)
    8383            endif
    84             if (fm(ig,k+1).lt.0.) then
     84            if (fm(ig,k+1)<0.) then
    8585!               print*,'fm2<0!!!'
    8686            endif
    87             if (entr(ig,k).lt.0.) then
     87            if (entr(ig,k)<0.) then
    8888!               print*,'entr2<0!!!'
    8989            endif
     
    9898      do k=2,nlay
    9999         do ig=1,ngrid
    100             if ((fm(ig,k+1)+detr(ig,k))*ptimestep.gt.  &
     100            if ((fm(ig,k+1)+detr(ig,k))*ptimestep>  &
    101101     &         1.e-5*masse(ig,k)) then
    102102         qa(ig,k)=(fm(ig,k)*qa(ig,k-1)+entr(ig,k)*q(ig,k))  &
     
    105105               qa(ig,k)=q(ig,k)
    106106            endif
    107             if (qa(ig,k).lt.0.) then
     107            if (qa(ig,k)<0.) then
    108108!               print*,'qa<0!!!'
    109109            endif
    110             if (q(ig,k).lt.0.) then
     110            if (q(ig,k)<0.) then
    111111!               print*,'q<0!!!'
    112112            endif
     
    200200            zzm=masse(ig,k)/ptimestep
    201201            cfl=max(cfl,fm(ig,k)/zzm)
    202             if (entr(ig,k).gt.zzm) then
     202            if (entr(ig,k)>zzm) then
    203203               print*,'entr*dt>m,2',k,entr(ig,k)*ptimestep,masse(ig,k)
    204204               abort_message = 'entr dt > m, 2nd'
     
    223223
    224224do iter=1,niter
    225       if (prt_level.ge.1) print*,'Q2 THERMCEL_DQ 0'
     225      if (prt_level>=1) print*,'Q2 THERMCEL_DQ 0'
    226226
    227227!   calcul du detrainement
     
    231231!           print*,'Q2 DQ ',detr(ig,k),fm(ig,k),entr(ig,k)
    232232!test
    233             if (detr(ig,k).lt.0.) then
     233            if (detr(ig,k)<0.) then
    234234               entr(ig,k)=entr(ig,k)-detr(ig,k)
    235235               detr(ig,k)=0.
     
    237237!     s         'f+1=',fm(ig,k+1),'e=',entr(ig,k),'d=',detr(ig,k)
    238238            endif
    239             if (fm(ig,k+1).lt.0.) then
     239            if (fm(ig,k+1)<0.) then
    240240!               print*,'fm2<0!!!'
    241241            endif
    242             if (entr(ig,k).lt.0.) then
     242            if (entr(ig,k)<0.) then
    243243!               print*,'entr2<0!!!'
    244244            endif
     
    253253      do k=2,nlay
    254254         do ig=1,ngrid
    255             if ((fm(ig,k+1)+detr(ig,k))*ztimestep.gt.  &
     255            if ((fm(ig,k+1)+detr(ig,k))*ztimestep>  &
    256256     &         1.e-5*masse(ig,k)) then
    257257         qa(ig,k)=(fm(ig,k)*qa(ig,k-1)+entr(ig,k)*q(ig,k))  &
     
    260260               qa(ig,k)=q(ig,k)
    261261            endif
    262             if (qa(ig,k).lt.0.) then
     262            if (qa(ig,k)<0.) then
    263263!               print*,'qa<0!!!'
    264264            endif
    265             if (q(ig,k).lt.0.) then
     265            if (q(ig,k)<0.) then
    266266!               print*,'q<0!!!'
    267267            endif
     
    292292#endif
    293293
    294             if (wqd(ig,k).lt.0.) then
     294            if (wqd(ig,k)<0.) then
    295295!               print*,'wqd<0!!!'
    296296            endif
Note: See TracChangeset for help on using the changeset viewer.