Description Usage Arguments Value Author(s) References Examples
This function estimates baseflow
1  | bf_boughton(discharge, k, C)
 | 
discharge | 
 Nnumeric vector of daily flow data  | 
k | 
 Numeric value of the recession constant (dimensionless).  | 
C | 
 Numeric value of the partitioning factor (dimensionless).  | 
Returns a numeric vector of the estimated baseflow.
Paul H. Whitfield
Boughton, WC. 1993. A hydrograph-based model for estimating the water yield of ungauged catchments.In Hydrology and Water Resources Symposium, Institution of Engineers Australia, Newcastle, NSW; 317-324.
1 2 3 4  | data(cania.sub.ts)
res <- bf_boughton(cania.sub.ts$Flow, k=0.9, C=0.1)
plot(cania.sub.ts$Date, cania.sub.ts$Flow, xlab="", ylab="Q (m3/s)", type="l")
points(cania.sub.ts$Date, res, type="l", col="blue")
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.