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/radiation/radiation_ecckd_interface.F90

    r4853 r5158  
    272272      ! rayleigh optical depth: convert to total optical depth and
    273273      ! single-scattering albedo
    274       do jcol = istartcol,iendcol
    275         do jlev = 1, nlev
    276           do jg = 1, config%n_g_sw
     274      DO jcol = istartcol,iendcol
     275        DO jlev = 1, nlev
     276          DO jg = 1, config%n_g_sw
    277277            od_sw(jg,jlev,jcol)  = od_sw(jg,jlev,jcol) + ssa_sw(jg,jlev,jcol)
    278278            ssa_sw(jg,jlev,jcol) = ssa_sw(jg,jlev,jcol) / od_sw(jg,jlev,jcol)
     
    308308
    309309      ! Calculate the Planck function for each g point
    310       do jcol = istartcol,iendcol
     310      DO jcol = istartcol,iendcol
    311311        call config%gas_optics_lw%calc_planck_function(nlev+1, &
    312312             &  thermodynamics%temperature_hl(jcol,:), planck_hl(:,:,jcol))
Note: See TracChangeset for help on using the changeset viewer.