BL.acc {BLRPM} | R Documentation |
BL.acc
accumulates the BLRPM stepfunction for a given accumulation time t.acc
at a given accumulation level acc.val
. An offse
can be defined. The unit is typically hours.
BL.acc(sfn, t.acc = 240, acc.val = 1, offset = 0)
sfn |
stepfunction of precipitation |
t.acc |
|
acc.val |
|
offset |
|
p.acc data.frame
Christoph Ritschel christoph.ritschel@met.fu-berlin.de
lambda <- 4/240 gamma <- 1/10 beta <- 0.3 eta <- 2 mux <- 4 t.sim <- 240 t.acc <- t.sim acc.val <- 1 offset <- 0 simulation <- BL.sim(lambda,gamma,beta,eta,mux,t.sim) sfn <- BL.stepfun(simulation$cells) ts <- BL.acc(sfn,t.acc,acc.val,offset)