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

(lint) Fix obsolete boolean operators

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/dyn3dmem/bilan_dyn_loc.F

    r4605 r5082  
    3030c====================================================================
    3131c
    32 c   Sous-programme consacre à des diagnostics dynamiques de base
     32c   Sous-programme consacre des diagnostics dynamiques de base
    3333c
    3434c
     
    8888      real ww
    8989
    90 c   variables dynamiques intermédiaires
     90c   variables dynamiques intermdiaires
    9191      REAL,SAVE,ALLOCATABLE :: vcont(:,:,:),ucont(:,:,:)
    9292      REAL,SAVE,ALLOCATABLE :: ang(:,:,:),unat(:,:,:)
     
    9696      REAL,SAVE,ALLOCATABLE :: bern(:,:,:)
    9797
    98 c   champ contenant les scalaires advectés.
     98c   champ contenant les scalaires advects.
    9999      real,SAVE,ALLOCATABLE :: Q(:,:,:,:)
    100100   
    101 c   champs cumulés
     101c   champs cumuls
    102102      real,SAVE,ALLOCATABLE ::  ps_cum(:,:)
    103103      real,SAVE,ALLOCATABLE ::  masse_cum(:,:,:)
     
    225225c   ncum est la frequence de stokage en pas de temps
    226226        ncum=dt_cum/dt_app
    227         if (abs(ncum*dt_app-dt_cum).gt.1.e-5*dt_app) then
     227        if (abs(ncum*dt_app-dt_cum)>1.e-5*dt_app) then
    228228           WRITE(lunout,*)
    229229     .            'Pb : le pas de cumule doit etre multiple du pas'
     
    298298      do iQ=1,nQ
    299299         do itr=1,ntr
    300             if(itr.eq.1) then
     300            if(itr==1) then
    301301               znom(itr,iQ)=nom(iQ)
    302302               znoml(itr,iQ)=nom(iQ)
     
    370370      jje=jj_end
    371371   
    372 c   énergie cinétique
     372c   �nergie cin�tique
    373373!      ucont(:,jjb:jje,:)=0
    374374
     
    382382      CALL enercin_loc(vcov,ucov,vcont,ucont,ecin)
    383383
    384 c   moment cinétique
     384c   moment cintique
    385385!$OMP DO SCHEDULE(STATIC,OMP_CHUNK)
    386386      do l=1,llm
     
    406406c=====================================================================
    407407c
    408       if(icum.EQ.0) then
     408      if(icum==0) then
    409409         jjb=jj_begin
    410410         jje=jj_end
     
    490490      enddo
    491491
    492 c    flux méridien
     492c    flux mridien
    493493c    -------------
    494494      do iQ=1,nQ
     
    584584c   PAS DE TEMPS D'ECRITURE
    585585c=====================================================================
    586       if (icum.eq.ncum) then
     586      if (icum==ncum) then
    587587c=====================================================================
    588588
     
    642642
    643643c=====================================================================
    644 c   Transport méridien
     644c   Transport mridien
    645645c=====================================================================
    646646
     
    778778c   sorties proprement dites
    779779!$OMP MASTER     
    780       if (i_sortie.eq.1) then
     780      if (i_sortie==1) then
    781781      jjb=jj_begin
    782782      jje=jj_end
Note: See TracChangeset for help on using the changeset viewer.