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_mcica_lw.F90

    r4946 r5158  
    146146
    147147    ! Loop through columns
    148     do jcol = istartcol,iendcol
     148    DO jcol = istartcol,iendcol
    149149
    150150      ! Clear-sky calculation
     
    203203        is_clear_sky_layer = .true.
    204204        i_cloud_top = nlev+1
    205         do jlev = 1,nlev
     205        DO jlev = 1,nlev
    206206          ! Compute combined gas+aerosol+cloud optical properties
    207207          if (cloud%fraction(jcol,jlev) >= config%cloud_fraction_threshold) then
     
    212212            end if
    213213
    214             do jg = 1,ng
     214            DO jg = 1,ng
    215215              od_cloud_new(jg) = od_scaling(jg,jlev) &
    216216                 &  * od_cloud(config%i_band_from_reordered_g_lw(jg),jlev,jcol)
     
    228228                ! case that od_total > 0.0 and ssa_total > 0.0 but
    229229                ! od_total*ssa_total == 0 due to underflow
    230                 do jg = 1,ng
     230                DO jg = 1,ng
    231231                  if (od_total(jg) > 0.0_jprb) then
    232232                    scat_od_total(jg) = ssa(jg,jlev,jcol)*od(jg,jlev,jcol) &
     
    247247              else
    248248
    249                 do jg = 1,ng
     249                DO jg = 1,ng
    250250                  if (od_total(jg) > 0.0_jprb) then
    251251                    scat_od = ssa_cloud(config%i_band_from_reordered_g_lw(jg),jlev,jcol) &
Note: See TracChangeset for help on using the changeset viewer.