Changeset 4367 for LMDZ6/trunk/libf/misc


Ignore:
Timestamp:
Dec 5, 2022, 9:44:54 PM (3 years ago)
Author:
dcugnet
Message:
  • adding missing SAVE attribute for that in check_isotopes
  • move phyetat0_get/_srf from phylmd[iso]/phyetat0_mod to new module phyetat0_get_mod -> break circular dependency
  • remove unused variables from physiq_mod
  • update phylmdiso/physiq_mod with respect to phylmd/physiq_mod (few updates were not included)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/misc/readTracFiles_mod.f90

    r4363 r4367  
    13061306    RETURN
    13071307  END IF
    1308   iky = 0; IF(ALLOCATED(ky%key)) iky = strIdx(ky%key,key)
     1308  iky = strIdx(ky%key,key)
    13091309  IF(iky == 0) THEN
    1310     nky = 0; IF(ALLOCATED(ky%key)) nky = SIZE(ky%key)
     1310    nky = SIZE(ky%key)
    13111311    ALLOCATE(k(nky+1)); k(1:nky) = ky%key; k(nky+1) = key; ky%key = k
    13121312    ALLOCATE(v(nky+1)); v(1:nky) = ky%val; v(nky+1) = val; ky%val = v
Note: See TracChangeset for help on using the changeset viewer.