aboutsummaryrefslogtreecommitdiff
path: root/man
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2018-07-10 17:57:33 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2018-07-10 17:59:19 +0200
commitcb3695dd434b3a3273217fb22c5ffb86065ae96d (patch)
treec37fbe68273e25d2741c0845665458357ac05450 /man
parentc4c3ca282c6aadca82e392692ae4100fec1dd834 (diff)
EFSA PEC soil guidance from 2017
- Implement the new guidance as well as possible - Maintenance work addressing CRAN checks
Diffstat (limited to 'man')
-rw-r--r--man/PEC_soil.Rd59
-rw-r--r--man/perc_runoff_exposit.Rd1
-rw-r--r--man/soil_scenario_data_EFSA_2015.Rd8
-rw-r--r--man/soil_scenario_data_EFSA_2017.Rd25
4 files changed, 82 insertions, 11 deletions
diff --git a/man/PEC_soil.Rd b/man/PEC_soil.Rd
index 1491790..f9e82e8 100644
--- a/man/PEC_soil.Rd
+++ b/man/PEC_soil.Rd
@@ -6,9 +6,11 @@
\usage{
PEC_soil(rate, rate_units = "g/ha", interception = 0, mixing_depth = 5,
PEC_units = "mg/kg", PEC_pw_units = "mg/L", interval = NA,
- n_periods = Inf, tillage_depth = 20, chent = NA, DT50 = NA,
+ n_periods = Inf, tillage_depth = 20, leaching_depth = tillage_depth,
+ crop = "annual", cultivation = FALSE, chent = NA, DT50 = NA,
Koc = NA, Kom = Koc/1.724, t_avg = 0, scenarios = c("default",
- "EFSA_2015"), porewater = FALSE)
+ "EFSA_2017", "EFSA_2015"), leaching = scenarios == "EFSA_2017",
+ porewater = FALSE)
}
\arguments{
\item{rate}{Application rate in units specified below}
@@ -30,7 +32,20 @@ degradation rate units are in days}
\item{tillage_depth}{Periodic (see interval) deeper mixing in cm}
-\item{chent}{An optional chent object holding substance specific information. Can
+\item{leaching_depth}{EFSA (2017) uses the mixing depth (ecotoxicological
+evaluation depth) to calculate leaching for annual crops where tillage
+takes place. By default, losses from the layer down to the tillage
+depth are taken into account in this implementation.}
+
+\item{crop}{Ignored for scenarios other than EFSA_2017. Only annual crops
+are supported when these scenarios are used. Only crops with a single cropping
+cycle per year are currently supported.}
+
+\item{cultivation}{Does mechanical cultivation in the sense of EFSA (2017)
+take place, i.e. twice a year to a depth of 5 cm? Ignored for scenarios
+other than EFSA_2017}
+
+\item{chent}{An optional chent object holding substance specific information. Can
also be a name for the substance as a character string}
\item{DT50}{If specified, overrides soil DT50 endpoints from a chent object
@@ -52,6 +67,9 @@ the DT50 is taken to be a modelling half-life at 20°C and pF2 (for when
and corrected using an Arrhenius activation energy of 65.4 kJ/mol. Also
model and scenario adjustment factors from the EFSA guidance are used.}
+\item{leaching}{Should leaching be taken into account? The default is FALSE,
+except when the EFSA_2017 scenarios are used.}
+
\item{porewater}{Should equilibrium porewater concentrations be estimated
based on Kom and the organic carbon fraction of the soil instead of total
soil concentrations? Based on equation (7) given in the PPR panel opinion
@@ -63,20 +81,33 @@ The predicted concentration in soil
}
\description{
This is a basic calculation of a contaminant concentration in bulk soil
-based on complete, instantaneous mixing. If an interval is given, an
+based on complete, instantaneous mixing. If an interval is given, an
attempt is made at calculating a long term maximum concentration using
-the concepts layed out for example in the PPR panel opinion (EFSA 2012).
+the concepts layed out in the PPR panel opinion (EFSA PPR panel 2012
+and in the EFSA guidance on PEC soil calculations (EFSA, 2015, 2017).
}
\details{
This assumes that the complete load to soil during the time specified by
'interval' (typically 365 days) is dosed at once. As in the PPR panel
-opinion cited below (PPR panel 2012), only temperature correction using the
+opinion cited below (EFSA PPR panel 2012), only temperature correction using the
Arrhenius equation is performed.
Total soil and porewater PEC values for the scenarios as defined in the EFSA
-guidance (2015, p. 13) can easily be calculated.
+guidance (2017, p. 14/15) can easily be calculated.
}
\note{
+While time weighted average (TWA) concentrations given in the examples
+from the EFSA guidance from 2015 (p. 80) are be reproduced, this is not
+true for the TWA concentrations given for the same example in the EFSA guidance
+from 2017 (p. 92).
+
+According to the EFSA guidance (EFSA, 2017, p. 43), leaching should be
+ taken into account for the EFSA 2017 scenarios, using the evaluation depth
+ (here mixing depth) as the depth of the layer from which leaching takes
+ place. However, as the amount leaching below the evaluation depth
+ (often 5 cm) will partly be mixed back during tillage, the default in this function
+ is to use the tillage depth for the calculation of the leaching rate.
+
If temperature information is available in the selected scenarios, as
e.g. in the EFSA scenarios, the DT50 for groundwater modelling
(destination 'PECgw') is taken from the chent object, otherwise the DT50
@@ -85,6 +116,14 @@ If temperature information is available in the selected scenarios, as
\examples{
PEC_soil(100, interception = 0.25)
+# This is example 1 starting at p. 92 of the EFSA guidance (2017)
+# Note that TWA concentrations differ from the ones given in the guidance
+# for an unknown reason (the values from EFSA (2015) can be reproduced).
+PEC_soil(1000, interval = 365, DT50 = 250, t_avg = c(0, 21),
+ Kom = 1000, scenarios = "EFSA_2017")
+PEC_soil(1000, interval = 365, DT50 = 250, t_av = c(0, 21),
+ Kom = 1000, scenarios = "EFSA_2017", porewater = TRUE)
+
# This is example 1 starting at p. 79 of the EFSA guidance (2015)
PEC_soil(1000, interval = 365, DT50 = 250, t_avg = c(0, 21),
scenarios = "EFSA_2015")
@@ -107,6 +146,12 @@ EFSA Panel on Plant Protection Products and their Residues (2012)
concentrations of plant protection products in soil. \emph{EFSA Journal}
\bold{10}(2) 2562, doi:10.2903/j.efsa.2012.2562
+ EFSA (European Food Safety Authority) 2017) EFSA guidance document for
+ predicting environmental concentrations of active substances of plant
+ protection products and transformation products of these active substances
+ in soil. \emph{EFSA Journal} \bold{15}(10) 4982
+ doi:10.2903/j.efsa.2017.4982
+
EFSA (European Food Safety Authority) (2015) EFSA guidance document for
predicting environmental concentrations of active substances of plant
protection products and transformation products of these active substances
diff --git a/man/perc_runoff_exposit.Rd b/man/perc_runoff_exposit.Rd
index 4f460e4..bdc36e8 100644
--- a/man/perc_runoff_exposit.Rd
+++ b/man/perc_runoff_exposit.Rd
@@ -6,6 +6,7 @@
\format{A data frame with percentage values for the dissolved fraction and the fraction
bound to eroding particles, with Koc classes used as row names
\describe{
+ \item{Koc_lower_bound}{The lower bound of the Koc class}
\item{dissolved}{The percentage of the applied substance transferred to an
adjacent water body in the dissolved phase}
\item{bound}{The percentage of the applied substance transferred to an
diff --git a/man/soil_scenario_data_EFSA_2015.Rd b/man/soil_scenario_data_EFSA_2015.Rd
index 02c16dc..64c00a8 100644
--- a/man/soil_scenario_data_EFSA_2015.Rd
+++ b/man/soil_scenario_data_EFSA_2015.Rd
@@ -9,10 +9,10 @@
mostly self-explanatory. \code{rho} is the dry bulk density of the top soil.}
\source{
EFSA (European Food Safety Authority) (2015)
-EFSA guidance document for predicting environmental concentrations
-of active substances of plant protection products and transformation products of these
-active substances in soil. \emph{EFSA Journal} \bold{13}(4) 4093
-doi:10.2903/j.efsa.2015.4093
+ EFSA guidance document for predicting environmental concentrations
+ of active substances of plant protection products and transformation products of these
+ active substances in soil. \emph{EFSA Journal} \bold{13}(4) 4093
+ doi:10.2903/j.efsa.2015.4093
}
\description{
Properties of the predefined scenarios used at Tier 1, Tier 2A and Tier 3A for the
diff --git a/man/soil_scenario_data_EFSA_2017.Rd b/man/soil_scenario_data_EFSA_2017.Rd
new file mode 100644
index 0000000..aeaacac
--- /dev/null
+++ b/man/soil_scenario_data_EFSA_2017.Rd
@@ -0,0 +1,25 @@
+% Generated by roxygen2: do not edit by hand
+% Please edit documentation in R/soil_scenario_data_EFSA_2017.R
+\docType{data}
+\name{soil_scenario_data_EFSA_2017}
+\alias{soil_scenario_data_EFSA_2017}
+\title{Properties of the predefined scenarios from the EFSA guidance from 2017}
+\format{A data frame with one row for each scenario. Row names are the scenario codes,
+ e.g. CTN for the Northern scenario for the total concentration in soil. Columns are
+ mostly self-explanatory. \code{rho} is the dry bulk density of the top soil.}
+\source{
+EFSA (European Food Safety Authority) (2017)
+ EFSA guidance document for predicting environmental concentrations
+ of active substances of plant protection products and transformation products of these
+ active substances in soil. \emph{EFSA Journal} \bold{15}(10) 4982
+ doi:10.2903/j.efsa.2017.4982
+}
+\description{
+Properties of the predefined scenarios used at Tier 1, Tier 2A and Tier 3A for the
+concentration in soil as given in the EFSA guidance (2017, p. 14/15). Also, the
+scenario and model adjustment factors from p. 16 and p. 18 are included.
+}
+\examples{
+soil_scenario_data_EFSA_2017
+}
+\keyword{datasets}

Contact - Imprint