Nothing
IDFcurve2=function (rain, tc, stvalue1 = 1, stvalue2 = 1, t, Tr = 200,
MP = F, Trplot = F)
{
options(warn = -1)
rain <- annualmax(rain)
rain <- as.matrix(rain)
nr <- nrow(rain)
vb1 <- vb(nr - 1)
Ev3 <- rain
for (k in 1:ncol(rain)) Ev3[, k] = (Ev3[, k])/(t[k])
ris <- nlm(f4, c(vb1, stvalue1), x3 = rain, t, iterlim = 1000)
if (MP)
ris <- nlm(f5, c(ris$estimate, stvalue2), x3 = rain,
t, iterlim = 1000)
mu <- mean(ris$estimate[1:nr]) - 0.45006 * sd(ris$estimate[1:nr])
sigma <- sd(ris$estimate[1:nr])/1.2825
a <- qgumbel(1 - 1/Tr, sigma = sigma, mu = mu)
pr <- pgumbel(ris$estimate[1:nr], sigma = sigma, mu = mu)
tr <- 1/(1 - pr)
if (MP) {
b <- ris$estimate[nr + 2]
m <- ris$estimate[nr + 1]
min <- ris$minimum
}
else {
b <- 0
m <- ris$estimate[nr + 1]
min <- ris$minimum
}
aH <- Hreg1(rain, ris$estimate[1:nr], m, b, t)
iH <- Ireg1(rain, ris$estimate[1:nr], m, b, t)
colnames(iH)=t
colnames(Ev3)=t
matplot(t(Ev3[1:10, ]), type = "p", pch=19, ylab = "I[mm/h]", xlab = "t(h)",ylim=c(0,max(Ev3)),axes=FALSE)
matplot(t(iH[1:10, ]), type = "l",add=TRUE)
axis(2)
axis(1, at=1:length(t), labels=t)
if (Trplot)
legend("topright", paste("Tr.plot =", round(tr[1:10],
2), "\n"), text.col = "red")
h <- a * tc/(b + tc)^m
i <- a/(b + tc)^m
out <- list(par = c(a, m, h, i, min), I = Ev3, Curve = iH)
cat("a(Tr) = ", a, "\n")
if (MP)
cat("m = ", m, "\n")
else cat("n = ", 1 - m, "\n")
cat("b = ", b, "\n")
cat("h(tc) = ", h, "\n")
cat("i(tc) = ", i, "\n")
cat("Offset =", min, "\n")
out
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.