Ignore:
Timestamp:
May 9, 2022, 12:35:40 PM (2 years ago)
Author:
dcugnet
Message:
  • Some variables are renamed or replaced by direct equivalents:
    • iso_indnum -> tracers(:)%iso_iName
    • niso_possibles -> niso
    • iqiso -> iqIsoPha ; index_trac -> itZonIso
    • ok_iso_verif -> isoCheck
    • ntraceurs_zone -> nzone ; ntraciso -> ntiso
    • qperemin -> min_qparent ; masseqmin -> min_qmass ; ratiomin -> min_ratio
  • Some renamed variables are only aliased with the older name (using USE <module>, ONLY: <oldName> => <newName>) in routines where they are repeated many times.
  • Few hard-coded indexes are now computed (examples: ilic, iso, ivap, irneb, iq_vap, iq_liq, iso_H2O, iso_HDO, iso_HTO, iso_O17, iso_O18).
  • The IF(isoCheck) test is now embedded in the check_isotopes_seq and check_isotopes_loc routines (lighter calling).
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmd/thermcell_main.F90

    r4133 r4143  
    2222
    2323#ifdef ISO
    24   USE infotrac_phy, ONLY : ntraciso
     24  USE infotrac_phy, ONLY : ntiso
    2525#ifdef ISOVERIF
    2626  USE isotopes_mod, ONLY : iso_eau,iso_HDO
     
    140140
    141141#ifdef ISO
    142       REAL xtpo(ntraciso,ngrid,nlay),xtpdoadj(ntraciso,ngrid,nlay)
    143       REAL xtzo(ntraciso,ngrid,nlay)
     142      REAL xtpo(ntiso,ngrid,nlay),xtpdoadj(ntiso,ngrid,nlay)
     143      REAL xtzo(ntiso,ngrid,nlay)
    144144      REAL xtpdoadj_tmp(ngrid,nlay)
    145145      REAL xtpo_tmp(ngrid,nlay)
     
    368368     &           zlev,lmax,zmax,zmax0,zmix,wmax)
    369369! Attention, w2 est transforme en sa racine carree dans cette routine
    370 ! Le probleme vient du fait que linter et lmix sont souvent égaux à 1.
     370! Le probleme vient du fait que linter et lmix sont souvent egaux a 1.
    371371      wmax_tmp=0.
    372372      do  l=1,nlay
     
    488488
    489489#ifdef ISO
    490         ! C Risi: on utilise directement la même routine
    491         do ixt=1,ntraciso
     490        ! C Risi: on utilise directement la meme routine
     491        do ixt=1,ntiso
    492492          do ll=1,nlay
    493493            DO ig=1,ngrid
     
    503503            enddo
    504504          enddo
    505         enddo !do ixt=1,ntraciso
     505        enddo
    506506#endif
    507507
     
    749749! nrlmd le 10/04/2012   Transport de la TKE par le thermique moyen pour la fermeture en ALP
    750750!                       On transporte pbl_tke pour donner therm_tke
    751 !                       Copie conforme de la subroutine DTKE dans physiq.F écrite par Frederic Hourdin
     751!                       Copie conforme de la subroutine DTKE dans physiq.F ecrite par Frederic Hourdin
    752752
    753753!=======================================================================
Note: See TracChangeset for help on using the changeset viewer.