aboutsummaryrefslogtreecommitdiff
path: root/man/PEC_sw_drift.Rd
blob: 5d56c8afe5abf5becc067f3ef880a8b97ba2ff80 (plain) (blame)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/PEC_sw_drift.R
\name{PEC_sw_drift}
\alias{PEC_sw_drift}
\title{Calculate predicted environmental concentrations in surface water due to drift}
\usage{
PEC_sw_drift(
  rate,
  applications = 1,
  water_depth = 30,
  drift_percentages = NULL,
  drift_data = c("JKI", "RF"),
  crop_group_JKI = c("Ackerbau", "Obstbau frueh", "Obstbau spaet", "Weinbau frueh",
    "Weinbau spaet", "Hopfenbau", "Flaechenkulturen > 900 l/ha", "Gleisanlagen"),
  crop_group_focus = c("arable", "hops", "vines, late", "vines, early", "fruit, late",
    "fruit, early", "aerial"),
  distances = c(1, 5, 10, 20),
  rate_units = "g/ha",
  PEC_units = "µg/L"
)
}
\arguments{
\item{rate}{Application rate in units specified below}

\item{applications}{Number of applications for selection of drift percentile}

\item{water_depth}{Depth of the water body in cm}

\item{drift_percentages}{Percentage drift values for which to calculate PECsw.
'drift_data' and 'distances' if not NULL.}

\item{drift_data}{Source of drift percentage data. If 'JKI', the \link{drift_data_JKI}
included in the package is used. If 'RF', the Rautmann formula is used, if
implemented for the crop type and number of applications}

\item{crop_group_JKI}{When using the 'JKI' drift data, one of the German names
as used in \link{drift_parameters_focus}.}

\item{crop_group_focus}{One of the crop groups as used in \link{drift_parameters_focus}}

\item{distances}{The distances in m for which to get PEC values}

\item{rate_units}{Defaults to g/ha}

\item{PEC_units}{Requested units for the calculated PEC. Only µg/L currently supported}
}
\value{
The predicted concentration in surface water
}
\description{
This is a basic, vectorised form of a simple calculation of a contaminant
concentration in surface water based on complete, instantaneous mixing
with input via spray drift.
}
\examples{
PEC_sw_drift(100)
# Alternatively, we can use the formula for a single application to "Ackerbau" from the paper
PEC_sw_drift(100, drift_data = "RF")

# This makes it possible to also use different distances
PEC_sw_drift(100, distances = c(1, 3, 5, 6, 10, 20, 50, 100), drift_data = "RF")

# or consider aerial application
PEC_sw_drift(100, distances = c(1, 3, 5, 6, 10, 20, 50, 100), drift_data = "RF", 
  crop_group_focus = "aerial")

# Using custom drift percentages is also supported
PEC_sw_drift(100, drift_percentages = c(2.77, 0.95, 0.57, 0.48, 0.29, 0.15, 0.06, 0.03))
}
\seealso{
\link{drift_parameters_focus}, \link{drift_percentages_rautmann}
}
\author{
Johannes Ranke
}

Contact - Imprint