The function estimate direct, diffuse, and reflected components of solar radiation (W m-2) as a function of day of year using the model in Campbell and Norman (1998) .

solar_radiation(doy, psi, tau, elev, rho = 0.7)

Arguments

doy

numeric the day of year; day_of_year.

psi

numeric zenith angle (radians).

tau

numeric atmospheric transmissivity (proportion), which is ratio of global solar radiation at ground level to extra-terrestrial solar radiation.

elev

numeric elevation (meters).

rho

numeric albedo as a proportion (0-1).

Value

numeric radiation components - direct, diffused and reflected (W m-2).

References

Campbell GS, Norman JM (1998). Introduction to environmental biophysics, 2nd ed. edition. Springer, New York. ISBN 0387949372.

Examples

  solar_radiation(doy  = 112, 
                  psi  = 1, 
                  tau  = 0.6, 
                  elev = 1500, 
                  rho  = 0.7)
#> [1] 334.3606 120.1351 318.1471