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/dyn3d/advtrac.F90

    r4064 r4143  
    1111   !            M.A Filiberti (04/2002)
    1212   !
    13    USE infotrac,     ONLY: nqtot, tracers,ok_iso_verif
     13   USE infotrac,     ONLY: nqtot, tracers, isoCheck
    1414   USE control_mod,  ONLY: iapp_tracvl, day_step
    1515   USE comconst_mod, ONLY: dtvr
     
    215215#endif
    216216
    217    IF(ok_iso_verif) THEN
    218       WRITE(*,*) 'advtrac 227'
    219       CALL check_isotopes_seq(q,ip1jmp1,'advtrac 162')
    220    END IF
     217   IF(isoCheck) WRITE(*,*) 'advtrac 227'
     218   CALL check_isotopes_seq(q,ip1jmp1,'advtrac 162')
    221219
    222220   !-------------------------------------------------------------------------
     
    346344   END DO
    347345
    348    IF(ok_iso_verif) then
    349       WRITE(*,*) 'advtrac 402'
    350       CALL check_isotopes_seq(q,ip1jmp1,'advtrac 397')
    351    END IF
     346   IF(isoCheck) WRITE(*,*) 'advtrac 402'
     347   CALL check_isotopes_seq(q,ip1jmp1,'advtrac 397')
    352348
    353349   !-------------------------------------------------------------------------
Note: See TracChangeset for help on using the changeset viewer.