Separate Baseflow and Surface runoff
FlowSeparation(DATA, eventTable, stepsBack = 5, timeUnits = "hours", plotOption = FALSE, event2plot = 1, verbose = FALSE)
updated table containing summary of Q events with 4 more columns: volumeQ, baseflowVolume, surfaceVolume and surfacePeak
From Boorman 1995: The recession prior to the event is continued through the event, and this flow is subtracted from the total flow hydrograph. A straight line is then drawn from beneath the peak flow, or centroid of peaks, to the point already identified as marking the end of response runoff. The response runoff is the portion of flow above this separation.
## Not run: ------------------------------------ # data("SevernTS") # tableP <- FindPevents(SevernTS$P[1:1000]) # tableQ <- FindQevents(SevernTS$Q[1:1000], tableP, hours2extend=6) # df <- FlowSeparation(SevernTS, tableQ, stepsBack=5, timeUnits = "hours", # plotOption = TRUE, event2plot = 3) ## ---------------------------------------------