travunif.Rd
This function computes 3 values of sprinkler irrigation distribution uniformity - CU (Christiansen's coefficient of uniformity), DU (dist. unif. of low quarter), DU.lh (dist. unif. of low half) for traveling gun irrigation systems. Data from a single transect of catch cans from one hard hose pull is used, and data is overlapped to account for additional contribution from adjacent traveler pulls. Overlapped catch depths are also returned.
travunif(ls,cs,lcdata,rcdata,site=NULL,plot=TRUE)
lane spacing.
catch can spacing.
catch can data from cans left of hose - order is from closet to hose outward.
catch can data from cans right of hose - order is from closet to hose outward.
optional character label for location (site) of evaluation - used in plot titles.
logical argument to invoke plotting, default is TRUE.
It is not necessary that lcdata and rcdata be of equal length. This might occur if windy conditions prevail and the wetted width of one side is greater than another, and data is not entered for empty cans. The function will automatically assign 0 depths to the "missing" catch cans if not explicitly done. While using volume instead of depth data will result in the same uniformity values, depth is more intuitive and will be required if the `o.depths` output will be used to compute `PELQT`.
A named list with the following items:
collected depths as overlapped within travel lane
CU from catch can data with overlap from adjacent lanes
DU low half (using function DU.lh
) from catch can data with overlap from adjacent lanes
DU from catch can data with overlap from adjacent lanes
Evans, R.O., Barker J.C., Smith J.T., Sheffield R.E. 1997b. Field calibration procedures for animal wastewater application equipment, hard hose and cable tow traveler irrigation system. NC Cooperative Extension Service publication AG-553-2. Raleigh, NC
Liu, Z., G.L. Grabow, R.L. Huffman, J. Osborne, and R.O. Evans. 2012. Factors Affecting Uniformity of Irrigation-Type Manure Application Systems. Applied Eng. in Agric. 28(1):43-56.
# units can be SI or US Customary, e.g.
# SI - mm for catch can data and m for lane and catch
# can spacing
# U.S. cust. - in. for catch can data and ft for lane
# and catch can spacing
left<-c(0.17,0.22,0.18,0.21,0.13,0.05,0.02,0) # units are in.
right<-c(0.16,0.2,0.21,0.2,0.21,0.13,0.06,0.02)
ls<-165;gs<-16 # units are ft
travunif(ls,gs,left,right)
#> $o.depths
#> [1] 0.170000 0.220000 0.200000 0.257500 0.238125 0.160000 0.200000 0.210000
#> [9] 0.213750 0.250625
#>
#> $CU
#> [1] 88.67925
#>
#> $DUlh
#> [1] 88.67925
#>
#> $DU
#> [1] 77.83019
#>