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/cospv2/parasol.F90

    r5099 r5158  
    159159    ! Compute grid-box averaged Parasol reflectances
    160160    parasolrefl(:,:) = 0._wp
    161     do k = 1, nrefl
    162        do ic = 1, ncol
     161    DO k = 1, nrefl
     162       DO ic = 1, ncol
    163163          parasolrefl(:,k) = parasolrefl(:,k) + refl(:,ic,k)
    164164       enddo
    165165    enddo
    166166   
    167     do k = 1, nrefl
     167    DO k = 1, nrefl
    168168       parasolrefl(:,k) = parasolrefl(:,k) / float(ncol)
    169169       ! if land=1 -> parasolrefl=R_UNDEF
Note: See TracChangeset for help on using the changeset viewer.