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/phylmdiso/surf_land_mod.F90

    r4033 r4143  
    6161    USE indice_sol_mod
    6262#ifdef ISO
    63     use infotrac_phy, ONLY: ntraciso,niso
     63    use infotrac_phy, ONLY: ntiso,niso
    6464    use isotopes_mod, ONLY: nudge_qsol, iso_eau
    6565#ifdef ISOVERIF
     
    104104    REAL, DIMENSION(klon), INTENT(IN)       :: q2m, t2m
    105105#ifdef ISO
    106     REAL, DIMENSION(ntraciso,klon), INTENT(IN)       :: xtprecip_rain, xtprecip_snow
    107     REAL, DIMENSION(ntraciso,klon), INTENT(IN)       :: xtspechum
     106    REAL, DIMENSION(ntiso,klon), INTENT(IN)       :: xtprecip_rain, xtprecip_snow
     107    REAL, DIMENSION(ntiso,klon), INTENT(IN)       :: xtspechum
    108108#endif
    109109
     
    135135    REAL, DIMENSION(klon,nvm_lmdz), INTENT(OUT) :: height
    136136#ifdef ISO
    137     REAL, DIMENSION(ntraciso,klon), INTENT(OUT)      :: xtevap
     137    REAL, DIMENSION(ntiso,klon), INTENT(OUT)      :: xtevap
    138138    REAL, DIMENSION(klon), INTENT(OUT)      :: h1
    139139    REAL, DIMENSION(niso,klon), INTENT(OUT)      :: xtrunoff_diag
     
    181181!       write(*,*) 'surf_land 169: ok_veget=',ok_veget
    182182        do i=1,knon
    183          do ixt=1,ntraciso
     183         do ixt=1,ntiso
    184184           call iso_verif_noNaN(xtprecip_snow(ixt,i),'surf_land 146')
    185185         enddo
Note: See TracChangeset for help on using the changeset viewer.