Create a 2 parameter gamma unit hydrograph with units cfs/in
Usage
uh2p_cfs_in(shape, scale, timestep, area)
Arguments
- shape
gamma shape parameter
- scale
gamma scale parameter
- timestep
timestep in hours
- area
basin area in square miles
Examples
dt <- 6
shape <- 2
scale <- 1
y <- uh2p_cfs_in(2, 1, 6, 1000)
x <- seq(dt, dt * length(y), by = dt)
plot(x, y, t = "l")