calc_depth: Estimate depth from discharge and hydraulic geometry...

View source: R/calc_depth.R

calc_depthR Documentation

Estimate depth from discharge and hydraulic geometry coefficients

Description

Uses the relationship d=c*Q^f (parameter names and definitions as in Leopold and Maddock, 1953; default values for c and f as in Raymond et al. 2012)

Usage

calc_depth(Q, c = u(0.409, "m"), f = u(0.294, ""))

Arguments

Q

discharge (m^3 s^-1)

c

coefficient representing depth at unit discharge (usually m)

f

exponent in depth-discharge relation (unitless)

Value

d, stream depth, in the same units as c

References

Raymond, Peter A., Christopher J. Zappa, David Butman, Thomas L. Bott, Jody Potter, Patrick Mulholland, Andrew E. Laursen, William H. McDowell, and Denis Newbold. Scaling the gas transfer velocity and hydraulic geometry in streams and small rivers. Limnology & Oceanography: Fluids & Environments 2 (2012): 41-53.

Leopold, L.B., and Thomas Maddock Jr. The Hydraulic Geometry of Stream Channels and Some Physiographic Implications. Report. Professional Paper, 1953. USGS Publications Warehouse. https://pubs.er.usgs.gov/publication/pp252.

Examples

Qs <- seq(1,9,2)
calc_depth(Q=Qs)
calc_depth(Q=Qs, f=0.4)
library(unitted)
calc_depth(Q=u(Qs, "m^3 s^-1"), c=u(40,"cm"))
calc_depth(Q=u(Qs, "m^3 s^-1"), f=u(0.36))

USGS-R/streamMetabolizer documentation built on Aug. 15, 2023, 7:50 a.m.