rainfall: Generate simulated daily rainfall

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/rainfall.R

Description

Generates simulated daily rainfall based on parameters derived from daily weather data.

Usage

1
	rainfall(ndays, thiswth, months)

Arguments

ndays

Number of days to simulate.

thiswth

Output of wth.param The choice of method in wth.param() determines what coefficients are provided, and thus which rainfall simulation method is used.

months

If the rainfall simulation method uses monthly statistics (Markov), a vector of month numbers of length(ndays) may be provided. If it is missing, then January 1 is assumed to be the first day of a 365-day year.

Details

The rainfall simulation currently offers choice of two methods: the simple Poisson model of Rodriguez-Iturbe et al. (1999), and the Markov chain model of Nicks (1974). The latter rainfall calculation is used by the APEX farm model, among others, and is based on monthly statistics.

Value

A vector of daily rainfall totals.

Author(s)

Heather Gall and Sarah Goslee

References

Rodriguez-Iturbe, I., Porporato, A., Ridolfi, L., Isham, V. and Coxi, D. R. (1999) Probabilistic modelling of water balance at a point: the role of climate, soil and vegetation. Proc Royal Soc A 455, 269–288.

Nicks, A. D. (1974) Stochastic generation of the occurrence, pattern and location of maximum amount of daily rainfall. Pp. 154–171 in: Proceedings Symposium on Statistical Hydrology. USDA Agricultural Research Service Miscellaneous Publication No. 1275, Washington, DC.

See Also

wth.param, temperature

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# GHCN daily weather file for State College, PA
# subset of data (2000-2009) for station USC00368449
#
data("weather") # same object


# calculate parameters for the poisson model
# using 0.3 mm as the lower limit for wet days.
weather.param.p <- wth.param(weather, method = "poisson", llim = 0.3)

# simulate ten years of rainfall
rain10.p <- rainfall(365*10, weather.param.p)

# increase per-event rainfall by 5 mm
weather.param.p5 <- weather.param.p
weather.param.p5$params$depth <- weather.param.p5$params$depth + 5
rain10.p5 <- rainfall(365*10, weather.param.p5)

# calculate parameters for the Markov chain model
# using 0.3 mm as the lower limit for wet days.
weather.param.m <- wth.param(weather, method = "markov", llim = 0.3)

# rainfall() selects Markov model based on input parameter types
rain10.m <- rainfall(365*10, weather.param.m)

# simulate 10 years of temperature
temp10 <- temperature(365*10, weather.param.p)

VFS documentation built on May 2, 2019, 8:58 a.m.