Ignore:
Timestamp:
Aug 2, 2024, 2:12:03 PM (3 months 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_description.F90

    r4489 r5158  
    137137
    138138    ! Loop over hydrophilic types
    139     do ja = 1,size(this%bin_philic)
     139    DO ja = 1,size(this%bin_philic)
    140140      ! Check if we have a match
    141141      if (to_string(this%code_philic(:,ja)) == code_str &
     
    146146    end do
    147147    ! Repeat for the hydrophobic types
    148     do ja = 1,size(this%bin_phobic)
     148    DO ja = 1,size(this%bin_phobic)
    149149      if (to_string(this%code_phobic(:,ja)) == code_str &
    150150           &  .and. to_string(this%optical_model_phobic(1:len(optical_model_str),ja)) &
     
    207207    if (lhydrophilic) then
    208208      ! Loop over hydrophilic aerosol types
    209       do ja = 1,size(this%bin_philic)
     209      DO ja = 1,size(this%bin_philic)
    210210        current_score = 0
    211211        if (to_string(this%code_philic(:,ja)) == code_str) then
     
    258258    else
    259259      ! Loop over hydrophobic aerosol types
    260       do ja = 1,size(this%bin_phobic)
     260      DO ja = 1,size(this%bin_phobic)
    261261        current_score = 0
    262262        if (to_string(this%code_phobic(:,ja)) == code_str) then
     
    325325    character(len=size(arr)) :: str
    326326    integer :: jc
    327     do jc = 1,size(arr)
     327    DO jc = 1,size(arr)
    328328      str(jc:jc) = arr(jc)
    329329    end do
Note: See TracChangeset for help on using the changeset viewer.