Diffuse Light Interception

Subroutine Difint (culad.f)

Calculation of diffuse interception factors and source terms

This subroutine calculates the interception factors for diffuse radiation for a canopy layer. It returns approximations for diffuse reflectance and transmittance factors and an approximation for diffuse radiation sources from interception of direct beam.

These calculations are done to get individual reflectance and transmittance factors for layers when these layers are relatively thick (DF > 0.1). Without these calculations, thicker layers cause errors in radiation penetration calculations (it is assumed that the probability of mutual shading within a layer is small). With this calculation thick layers (DF >= 1) can be used with negligible errors and the radiation calculations require much less computer time.

RETURNS:

  RLAYR(K)     	  Reflectance factor for diffuse radiation of a 
               	  layer. Subscripted by K for wavelength band.
               		
  TLAYR(K)     	  Transmittance factors for diffuse radiation of a 
               	  layer. Subscripted by K for wavelength band.

  SOURDN(K,IHR)   Source term for downward diffuse radiation for 
               	  the wavelength band K and IHR for one layer.
               		
  SOURUP(K,IHR)   Source term for upward diffuse radiation for
               	  the wavelength band K and IHR for one layer.

View definitions of variables used in this subroutine:

Calculate EXPDIF

- the diffuse radiation non-interception factor for a canopy layer of thickness DF. [60]

Calculate TLAYR and RLAYR

To improve accuracy, we split the canopy layer into 10 sublayers and calculate the up and downward diffuse fluxes within sublayers following the strategy outlined by Norman (1979). Reflectances and transmittances are calculated based on the relative strength of these fluxes between layers.

Calculate SOURUP and SOURDN

Note that above (in bullet 1.) we assumed there was no direct beam flux into the layers when calculating RLAYR and TLAYR. However, a certain amount of direct beam flux will be converted into diffuse emission at each layer. We now consider this additional source of diffuse emission.

These sources for upward and downward diffuse radiation can be formulated as a layer property, in terms of the fraction of intercepted direct beam incident to that layer. However, since the amount of intercepted direct beam radiation depends on the solar zenith angle, the following calculations are carried out for each IHR and the variables derived in this routine are subscripted by K (for the wavelength band) and IHR. The calculations are only carried out for IHR's for which the solar zenith angle is less than 89.4 degrees and/or the contribution of direct beam radiation is greater than 1%.

Again we divide the layer into 10 sublayers for greater accuracy.

Return to cupidg2