abstraction {RHMS} | R Documentation |
computes surface and canopy abstractions for a given rainfall event.
abstraction(rainfall,abstractionParams)
rainfall |
a vector : a time series of precipitation hyetograph (mm) |
abstractionParams |
a list: including parameters of simple surface and simple canopy methods.
|
a list: an object from class of abstraction
Rezgar Arabzadeh
rainfall<-5*exp(((seq(2.5,7.5,length.out=36))-5)^2/-0.8)
abstractionParams<-list(canopyAbstraction=2,surfaceAbstraction=3.5)
abstraction(rainfall,abstractionParams)