Last data update: 2014.03.03

R: Daily overland runoff breakdown
RunoffBreakdownR Documentation

Daily overland runoff breakdown

Description

Determines the percentage of runoff that occurs on each day following a storm event, based on time to peak of a watershed.

Usage

RunoffBreakdown(Tp_hr, a = 4.5, HrPrcDelay = 4, numDaysReturn = 5)

Arguments

Tp_hr

Time to peak (hr).

a

The ratio of the time to recession to the time to peak. Default is 4.5

HrPrcDelay

Lag time (hr)

numDaysReturn

Number of days to return

Value

returns a vector corresponding to the amount of runoff per day

Author(s)

J Archibald

Examples

RunoffBreakdown(5)

Results


R version 3.3.1 (2016-06-21) -- "Bug in Your Hair"
Copyright (C) 2016 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu (64-bit)

R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.

R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.

Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.

> library(EcoHydRology)
Loading required package: operators

Attaching package: 'operators'

The following objects are masked from 'package:base':

    options, strrep

Loading required package: topmodel
Loading required package: DEoptim

DEoptim package
Differential Evolution algorithm in R
Authors: D. Ardia, K. Mullen, B. Peterson and J. Ulrich

Loading required package: XML
> png(filename="/home/ddbj/snapshot/RGM3/R_CC/result/EcoHydRology/RunoffBreakdown.Rd_%03d_medium.png", width=480, height=480)
> ### Name: RunoffBreakdown
> ### Title: Daily overland runoff breakdown
> ### Aliases: RunoffBreakdown
> 
> ### ** Examples
> 
> RunoffBreakdown(5)
[1] 0.784 0.190 0.023 0.003 0.000
> 
> 
> 
> 
> 
> dev.off()
null device 
          1 
>