Ignore:
Timestamp:
Aug 2, 2024, 2:12:03 PM (7 weeks ago)
Author:
abarral
Message:

Add missing klon on strataer_emiss_mod.F90
Correct various missing explicit declarations
Replace tabs by spaces (tabs are not part of the fortran charset)
Continue cleaning modules
Removed unused arguments and variables

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_aerosol_optics_data.F90

    r4489 r5158  
    613613    iend   = ubound(itypes,1)
    614614
    615     do jtype = istart, iend
     615    DO jtype = istart, iend
    616616      if (itypes(jtype) == 0) then
    617617        call this%set_empty_type(jtype)
     
    649649    else
    650650      calc_rh_index = 1
    651       do while (rh > this%rh_lower(calc_rh_index + 1))
     651      DO while (rh > this%rh_lower(calc_rh_index + 1))
    652652        calc_rh_index = calc_rh_index + 1
    653653      end do
     
    676676    end if
    677677
    678     do jtype = 1,size(i_type_map)
     678    DO jtype = 1,size(i_type_map)
    679679      if (i_type_map(jtype) > 0) then
    680680        write(nulout,'(i4,a,a)') jtype, ' -> hydrophobic type ', &
     
    708708
    709709    ! Find index of first character
    710     do while (i_line_current < iline)
     710    DO while (i_line_current < iline)
    711711      i_start_new = scan(str(istart:iend), new_line(' '))
    712712      if (i_start_new == 0) then
Note: See TracChangeset for help on using the changeset viewer.