- Timestamp:
- Aug 2, 2024, 2:12:03 PM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/Amaury_dev/libf/phylmd/ecrad.v1.5.1/radiation_homogeneous_sw.F90
r3908 r5158 123 123 124 124 ! Loop through columns 125 dojcol = istartcol,iendcol125 DO jcol = istartcol,iendcol 126 126 ! Only perform calculation if sun above the horizon 127 127 if (single_level%cos_sza(jcol) > 0.0_jprb) then … … 131 131 ! Is there any cloud in the profile? 132 132 is_cloudy_profile = .false. 133 dojlev = 1,nlev133 DO jlev = 1,nlev 134 134 if (cloud%fraction(jcol,jlev) >= config%cloud_fraction_threshold) then 135 135 is_cloudy_profile = .true. … … 146 146 ! Delta-Eddington scaling has already been performed to the 147 147 ! aerosol part of od, ssa and g 148 dojlev = 1,nlev148 DO jlev = 1,nlev 149 149 if (config%do_clear .or. cloud%fraction(jcol,jlev) & 150 150 & < config%cloud_fraction_threshold) then … … 164 164 else 165 165 ! Apply delta-Eddington scaling to the aerosol-gas mixture 166 dojlev = 1,nlev166 DO jlev = 1,nlev 167 167 if (config%do_clear .or. cloud%fraction(jcol,jlev) & 168 168 & < config%cloud_fraction_threshold) then … … 229 229 ! fluxes now. 230 230 if (is_cloudy_profile .or. .not. config%do_clear) then 231 dojlev = 1,nlev231 DO jlev = 1,nlev 232 232 ! Compute combined gas+aerosol+cloud optical properties; 233 233 ! note that for clear layers, the reflectance and
Note: See TracChangeset
for help on using the changeset viewer.