This describes how I estimated the daily light integral (DLI) for 2015 in Chattanooga, Knoxville, Memphis, and Nashville. The code for this document, and for the calculations, is at https://github.com/micahwoods/dli_tn.

I had written about an average DLI of 40 being a no problem level for bermudagrass putting greens. Brandon Horvath asked if I could generate some DLI values for Tennessee locations.

That sound like it would be easy, but it takes a bit of calculation. It’s not like there are sensors for photosynthetically active radiation (PAR) all around the state, streaming the measurements or making them available for download. If there are such data sources, please let me know!

Here’s what I did.

Step 1, get measured data from nearby stations

I knew that DLI data for the 4 cities of interest were not available, but I could get global solar radiation (Rs) measurements for Crossville, TN, and for a number of locations in the surrounding states. nrcc_nearby_stations.R gets the 2015 daily summaries from the U.S. Climate Reference Network (Diamond et al. 2013). Then, I converted the measured Rs from units of MJ m-2 d-1 to DLI in units of moles m-2 d-1. I did this by multiplying Rs by 2.04, the factor given in Meek et al. (1984).

Then I plotted the DLI for these locations in 2015, with a blue line showing a moving average of DLI.

Step 2, compare calculated DLI to measured DLI

For the four cities in Tennessee, I would need to calculate the DLI. Before doing that, I wanted to check if the calculated DLI was similar to the the measured DLI.

I used the Hargreaves radiation formula to estimate Rs, from the estimating missing radiation data section of the FAO Crop Evapotranspiration book (Allen et al. 1998).

\[ R_{s} = k_{R_{s}}\sqrt{T_{max} - T_{min}}R_{a} \]

where

Now I had a measured Rs and an estimated Rs for these locations, and I calculated DLI using the same 2.04 factor, and then had a look at how the estimated Rs could predict the measured Rs.

I combined the data for all eight locations (from Asheville to Watkinsville) to find an equation that would adjust the estimated Rs to be closer to the measured Rs. That equation is \(R_{s} = -2.71 + 1.09 R_{s-Hargreaves}\).

After that adjustment, this is the relationship between the measured Rs (converted to DLI) at those eight locations and the calculated and adjusted value, which I’ll denote as dliCalc.

There is a lot of variability. For any one day, the Hargreaves equation wouldn’t make a very accurate prediction of the DLI. But over an entire year, the calculated DLI and the measured DLI are pretty similar.

summary(all$dli)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##  0.1224 18.3100 30.5200 30.2300 43.2000 63.0000
summary(all$dliCalc)
##    Min. 1st Qu.  Median    Mean 3rd Qu.    Max. 
##   2.139  19.290  31.080  30.210  40.650  61.030

An hour of midday sun in midsummer contributes 7.2 moles m-2 to the DLI. Looking at the first quartile, median, and third quartile, the differences between what was measured and what was calculated are all less than a half hour of midday sunshine. I would not want to use this method to predict DLI for a location for a single day, but to get an idea of the distribution of DLI over hundreds of days, this method based on the Hargreaves radiation formula seems reasonable.

The calculations made using the Hargreaves radiation formula underestimate the number of days that actually have a DLI less than 10 or greater than 50, and slightly overestimate the number of days with a DLI in the range of 10 to 50. For more about this, and various ways I looked at this, see r/plots.R.

What I’ll try to calculate for the four cities in Tennessee is something like the chart below, showing how the DLI changes through the year. The blue line is a moving average of the measurements at those locations, and the red line is the moving average of the estimate from the Hargreaves radiation formula. With the exception of Asheville and Charlottesville, the Hargreaves method works reasonably well.

Step 3, calculate DLI for Chattanooga, Knoxville, Memphis, and Nashville

I don’t have measured Rs data for any of those locations, but I have the method outlined above to get an estimate of DLI by calculation. The process is:

  1. get temperature data for the locations, which I’ll use in the Hargreaves radiation formula to calculate Rs – I downloaded data from http://www.ncdc.noaa.gov/cdo-web/ and selected for the airports at the four Tennessee cities.
  2. calculate Ra based on latitude and day of year, then calculate Rs using the Hargreaves radiation formula as described above, then convert Rs to DLI.
  3. These calculations are in the tn_four_cities.R script.

For 2015, this is the result. Lines are marked at a DLI of 40 (my no problem level) and at the 32.6 minimal level required for acceptable Tifeagle as determined by Bunnell et al. (2005).

That looks reasonable. How does it compare to the one Tennessee location for which I have measured Rs data? Remember, the chart of estimated DLI for Chattanooga, Knoxville, Memphis, and Nashville is based on estimated Rs from the Hargreaves equation. What if I add another facet to the chart, showing Crossville, and the measured data at that location, and also the calculated data for that location?

There is a wider spread in the measured data, with more DLI values less than 10 and more than 50. For a moving average of DLI, however, it seems that the estimates are pretty close to what would be observed if the DLI were measured.


For more about this and other turfgrass topics, see Viridescent, the Asian Turfgrass Center blog.

This document was prepared using R Markdown and was last updated at 2015-12-21 12:35:11.

References

Allen, Richard G, Luis S Pereira, Dirk Raes, Martin Smith, and others. 1998. “Crop Evapotranspiration-Guidelines for Computing Crop Water Requirements-FAO Irrigation and Drainage Paper 56.” FAO, Rome 300 (9): D05109.

Bunnell, B. Todd, Lambert B. McCarty, James E. Faust, William C. Bridges, Jr., and Nihal C. Rajapakse. 2005. “Quantifying a Daily Light Integral Requirement of a ‘Tifeagle’ Bermudagrass Golf Green.” Crop Science 45: 569–74. doi:10.2135/cropsci2005.0569.

Diamond, Howard J., Thomas R. Karl, Michael A. Palecki, C. Bruce Baker, Jesse E. Bell, Ronald D. Leeper, David R. Easterling, et al. 2013. “U.S. Climate Reference Network After One Decade of Operations: Status and Assessment.” Bulletin of the American Meteorological Society 94 (4). American Meteorological Society: 485–98. doi:10.1175/BAMS-D-12-00170.1.

Meek, D.W., J.L. Hatfield, T.A. Howell, S.B. Idso, and R.J. Reginato. 1984. “A Generalized Relationship Between Photosynthetically Active Radiation and Solar Radiation.” Agronomy Journal 76: 939–45. doi:10.2134/agronj1984.00021962007600060018x.