| wetland_h_s | R Documentation |
Computing pond area and depth for Prairie depressions from the Hayashi-van der Kamp method requires values of the parameters h and s. Unfortunately, these values can't be solved explicitly from the pond max area and volume. This function finds the values of the parameters by iterative solution.
wetland_h_s(
max_volume,
max_area,
p,
max_iterations = 100,
max_error = 1e-04,
return_stats = FALSE
)
max_volume |
Required. Maximum volume of a pond in m |
max_area |
Required. Maximum area of a pond in m |
p |
Required. Scaling exponent for pond depth-area relationshp. See reference. |
max_iterations |
Optional. Maximum number of iterations for solution. Default is 100. |
max_error |
Optional. Maximum error for estimation of parameters, as a fraction of |
return_stats |
If |
If successful, returns a vector of the parameters h (the maximum pond depth) in m and
s (the pond area for a depth of 1 m) in m^2). Optionally returns the error and number of iterations
required for solution. If unsuccessful, returns FALSE.
Kevin Shook
Hayashi, M., and G. van der Kamp (2000), Simple equations to represent the volume–area–depth relations of shallow wetlands in small topographic depressions, J. Hydrol., 237(1–2), 74–85, doi:10.1016/S0022-1694(00)00300-0.
Other wetland_functions:
wetland_pond_area(),
wetland_pond_depth(),
wetland_pond_size()
wetland_h_s(5000, 500, 1.72)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.