Ignore:
Timestamp:
Jul 19, 2024, 7:54:50 PM (2 months ago)
Author:
abarral
Message:

convert labeled do (f77) to do .. end do

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cospv2/modis_simulator.F90

    r3491 r5086  
    222222          retrievedTau(i)              = R_UNDEF
    223223       end if
    224     end do
     224    END DO
    225225    where((retrievedSize(1:nSubCols) < 0.).and.(retrievedSize(1:nSubCols) /= R_UNDEF)) &
    226226         retrievedSize(1:nSubCols) = 1.0e-06_wp*re_fill
     
    455455      end if
    456456      if(totalTau >= tauLimit) exit
    457     end do
     457    END DO
    458458
    459459    if (totalTau > 0._wp) then
     
    489489      end if
    490490      if(totalTau >= tauLimit) exit
    491     end do
     491    END DO
    492492
    493493    if (totalTau > 0._wp) then
     
    715715    do i = 1, size(cloudIndicies)
    716716       call two_stream(tau(cloudIndicies(i)), g(cloudIndicies(i)), w0(cloudIndicies(i)), Refl(i), Trans(i))
    717     end do
     717    END DO
    718718   
    719719    call adding_doubling(count(tau(1:nLevels) > 0),Refl(:), Trans(:), Refl_tot, Trans_tot) 
     
    897897       Refl_cumulative(i) = Refl_cumulative(i-1) + Refl(i)*(Tran_cumulative(i-1)**2)/(1._wp - Refl_cumulative(i-1) * Refl(i))
    898898       Tran_cumulative(i) = (Tran_cumulative(i-1)*Tran(i)) / (1._wp - Refl_cumulative(i-1) * Refl(i))
    899     end do
     899    END DO
    900900   
    901901    Refl_tot = Refl_cumulative(size(Refl))
Note: See TracChangeset for help on using the changeset viewer.