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

    r4489 r5158  
    142142
    143143    ! Loop through columns
    144     do jcol = istartcol,iendcol
     144    DO jcol = istartcol,iendcol
    145145      ! Only perform calculation if sun above the horizon
    146146      if (single_level%cos_sza(jcol) > 0.0_jprb) then
     
    152152          ! Delta-Eddington scaling has already been performed to the
    153153          ! aerosol part of od, ssa and g
    154           do jlev = 1,nlev
     154          DO jlev = 1,nlev
    155155            call calc_two_stream_gammas_sw(ng, &
    156156                 &  cos_sza, ssa(:,jlev,jcol), g(:,jlev,jcol), &
     
    165165        else
    166166          ! Apply delta-Eddington scaling to the aerosol-gas mixture
    167           do jlev = 1,nlev
     167          DO jlev = 1,nlev
    168168            od_total  =  od(:,jlev,jcol)
    169169            ssa_total = ssa(:,jlev,jcol)
     
    219219        if (total_cloud_cover >= config%cloud_fraction_threshold) then
    220220          ! Total-sky calculation
    221           do jlev = 1,nlev
     221          DO jlev = 1,nlev
    222222            ! Compute combined gas+aerosol+cloud optical properties
    223223            if (cloud%fraction(jcol,jlev) >= config%cloud_fraction_threshold) then
    224               do jg = 1,ng
     224              DO jg = 1,ng
    225225                od_cloud_new(jg) = od_scaling(jg,jlev) &
    226226                   &  * od_cloud(config%i_band_from_reordered_g_sw(jg),jlev,jcol)
Note: See TracChangeset for help on using the changeset viewer.