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

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

Location:
LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/cosp.F90

    r5082 r5086  
    731731                                  modisRetrievedCloudTopPressure(i,:),                   &
    732732                                  modisRetrievedTau(i,:),modisRetrievedSize(i,:))
    733           end do
     733          END DO
    734734       endif
    735735    endif
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/icarus.F90

    r5082 r5086  
    155155                  (cchar_realtops(acc(ilev,ibox)+1),ilev=1,nlev),&
    156156                  (cchar(acc(ilev,ibox)+1),ilev=1,nlev)
    157           end do
     157          END DO
    158158          close(9)
    159159
     
    322322       do ibox=1,ncol
    323323          fluxtop(1:npoints,ibox) = fluxtop(1:npoints,ibox) + emsfc_lw*bb(1:npoints)*trans_layers_above(1:npoints,ibox)
    324        end do
     324       END DO
    325325
    326326       ! All Sky brightness temperature
     
    445445                levmatch(1:npoints,ibox)=ilev
    446446             endwhere
    447           end do
     447          END DO
    448448       end if
    449449       where(tau(1:npoints,ibox) <= tauchk)
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/math_lib.F90

    r3358 r5086  
    209209          exit
    210210       end if
    211     end do
     211    END DO
    212212   
    213213    if (lerror) then
     
    244244       end if
    245245       ilo = ilo + 1
    246     end do
     246    END DO
    247247   
    248248    ilo = max ( 2, ilo )
     
    254254       end if
    255255       ihi = ihi - 1
    256     end do
     256    END DO
    257257   
    258258    ihi = min ( ihi, ntab - 1 )
     
    305305       syl = x2
    306306       
    307     end do
     307    END DO
    308308
    309309    result = sum1 + ca * ( b**3 - syl**3 ) / 3._wp &
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/modis_simulator.F90

    r3358 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))
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/optics_lib.F90

    r5082 r5086  
    539539    if (alam < cutice) then
    540540       ! Region from 0.045 microns to 167.0 microns - no temperature depend
    541        do i=2,nwl
    542           if(alam < wl(i)) continue
    543        enddo
    544541       x1  = log(wl(i-1))
    545542       x2  = log(wl(i))
  • LMDZ6/branches/Amaury_dev/libf/phylmd/cosp2/quickbeam_optics.F90

    r5082 r5086  
    10091009          call mieint(sizep(i), m0(i), one, dqv, qext(i), dqsc, qbsca(i), &
    10101010               dg, xs1, xs2, dph, err)
    1011        end do
     1011       END DO
    10121012
    10131013    else
Note: See TracChangeset for help on using the changeset viewer.