Changeset 4121 for LMDZ6/trunk
- Timestamp:
- Apr 5, 2022, 4:17:50 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/misc/readTracFiles_mod.f90
r4120 r4121 600 600 !------------------------------------------------------------------------------------------------------------------------------ 601 601 TYPE(trac_type), ALLOCATABLE, INTENT(INOUT) :: tr(:) !--- Tracer derived type vector 602 ! TYPE(trac_type), ALLOCATABLE :: ttr(:)603 602 INTEGER, ALLOCATABLE :: iy(:), iz(:) 604 603 INTEGER :: ig, ng, iq, jq, ip, nq, n, ix(SIZE(tr)), k … … 608 607 iq = strIdx(tr(:)%name, addPhase('H2O', ip)) 609 608 IF(iq == 0) CYCLE 610 tr = tr([iq, 1:iq-1, iq+1:nq]) 611 ! tr(:)%name = nam 609 tr = [tr(iq), tr(1:iq-1), tr(iq+1:nq)] 612 610 END DO 613 611 IF(lSortByGen) THEN
Note: See TracChangeset
for help on using the changeset viewer.