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

    r3908 r5158  
    123123
    124124    ! Loop through columns
    125     do jcol = istartcol,iendcol
     125    DO jcol = istartcol,iendcol
    126126      ! Only perform calculation if sun above the horizon
    127127      if (single_level%cos_sza(jcol) > 0.0_jprb) then
     
    131131        ! Is there any cloud in the profile?
    132132        is_cloudy_profile = .false.
    133         do jlev = 1,nlev
     133        DO jlev = 1,nlev
    134134          if (cloud%fraction(jcol,jlev) >= config%cloud_fraction_threshold) then
    135135            is_cloudy_profile = .true.
     
    146146          ! Delta-Eddington scaling has already been performed to the
    147147          ! aerosol part of od, ssa and g
    148           do jlev = 1,nlev
     148          DO jlev = 1,nlev
    149149            if (config%do_clear .or. cloud%fraction(jcol,jlev) &
    150150                 &                 < config%cloud_fraction_threshold) then
     
    164164        else
    165165          ! Apply delta-Eddington scaling to the aerosol-gas mixture
    166           do jlev = 1,nlev
     166          DO jlev = 1,nlev
    167167            if (config%do_clear .or. cloud%fraction(jcol,jlev) &
    168168                 &                 < config%cloud_fraction_threshold) then
     
    229229        ! fluxes now.
    230230        if (is_cloudy_profile .or. .not. config%do_clear) then
    231           do jlev = 1,nlev
     231          DO jlev = 1,nlev
    232232            ! Compute combined gas+aerosol+cloud optical properties;
    233233            ! note that for clear layers, the reflectance and
Note: See TracChangeset for help on using the changeset viewer.