From 5b75b8aeb0458e19e29a7ddaec18d5ebf6f5bb4c Mon Sep 17 00:00:00 2001 From: Ranke Johannes Date: Thu, 1 Feb 2024 14:02:51 +0100 Subject: Extend drift percentage calcs with FOCUS method --- docs/reference/PEC_sw_drift.html | 2 +- docs/reference/Rplot001.png | Bin 1011 -> 14563 bytes docs/reference/SSLRC_mobility_classification.html | 6 +- docs/reference/drift_parameters_focus.html | 2 +- docs/reference/drift_percentages_rautmann-1.png | Bin 0 -> 42098 bytes docs/reference/drift_percentages_rautmann.html | 158 +++++++++++++++++++++ .../drift_percentages_rautmann_formula.html | 120 ---------------- docs/reference/index.html | 4 +- 8 files changed, 165 insertions(+), 127 deletions(-) create mode 100644 docs/reference/drift_percentages_rautmann-1.png create mode 100644 docs/reference/drift_percentages_rautmann.html delete mode 100644 docs/reference/drift_percentages_rautmann_formula.html (limited to 'docs/reference') diff --git a/docs/reference/PEC_sw_drift.html b/docs/reference/PEC_sw_drift.html index c7a21f9..df36834 100644 --- a/docs/reference/PEC_sw_drift.html +++ b/docs/reference/PEC_sw_drift.html @@ -124,7 +124,7 @@ as used in drift_parameters_focus.

See also

- +

Author

diff --git a/docs/reference/Rplot001.png b/docs/reference/Rplot001.png index 17a3580..6d4edac 100644 Binary files a/docs/reference/Rplot001.png and b/docs/reference/Rplot001.png differ diff --git a/docs/reference/SSLRC_mobility_classification.html b/docs/reference/SSLRC_mobility_classification.html index 3e5e945..1874128 100644 --- a/docs/reference/SSLRC_mobility_classification.html +++ b/docs/reference/SSLRC_mobility_classification.html @@ -1,7 +1,7 @@ Determine the SSLRC mobility classification for a chemical substance from its Koc — SSLRC_mobility_classification • pfm @@ -46,7 +46,7 @@ checked against the spreadsheet published on the CRC website">

This implements the method specified in the UK data requirements handbook and was -checked against the spreadsheet published on the CRC website

+checked against the spreadsheet published on the CRD website

diff --git a/docs/reference/drift_parameters_focus.html b/docs/reference/drift_parameters_focus.html index 990ad75..3f54160 100644 --- a/docs/reference/drift_parameters_focus.html +++ b/docs/reference/drift_parameters_focus.html @@ -86,7 +86,7 @@ Bundesanst. Land- Forstwirtsch. 383, 133-141

diff --git a/docs/reference/drift_percentages_rautmann-1.png b/docs/reference/drift_percentages_rautmann-1.png new file mode 100644 index 0000000..e237b62 Binary files /dev/null and b/docs/reference/drift_percentages_rautmann-1.png differ diff --git a/docs/reference/drift_percentages_rautmann.html b/docs/reference/drift_percentages_rautmann.html new file mode 100644 index 0000000..1a42083 --- /dev/null +++ b/docs/reference/drift_percentages_rautmann.html @@ -0,0 +1,158 @@ + +Calculate drift percentages based on Rautmann data — drift_percentages_rautmann • pfm + Skip to contents + + +
+
+
+ +
+

Calculate drift percentages based on Rautmann data

+
+ +
+

Usage

+
drift_percentages_rautmann(
+  distances,
+  applications = 1,
+  crop_group_focus = c("arable", "hops", "vines, late", "vines, early", "fruit, late",
+    "fruit, early", "aerial"),
+  formula = c("Rautmann", "FOCUS"),
+  widths = 1
+)
+
+ +
+

Arguments

+
distances
+

The distances in m for which to get PEC values

+ + +
applications
+

Number of applications for selection of drift percentile

+ + +
crop_group_focus
+

One of the crop groups as used in drift_parameters_focus

+ + +
formula
+

By default, the original Rautmann formula is used. If you +specify "FOCUS", mean drift input over the width of the water body is +calculated as described in Chapter 5.4.5 of the FOCUS surface water guidance

+ + +
widths
+

The widths of the water bodies (only used in the FOCUS formula)

+ +
+
+

References

+

FOCUS (2014) Generic guidance for Surface Water Scenarios (version 1.4). +FOrum for the Co-ordination of pesticde fate models and their USe. +http://esdac.jrc.ec.europa.eu/public_path/projects_data/focus/sw/docs/Generic%20FOCUS_SWS_vc1.4.pdf

+
+ + +
+

Examples

+
# Compare JKI data with Rautmann formula
+# One application on field crops, for 1 m, 3 m and 5 m distance
+drift_data_JKI[[1]][as.character(c(1, 3, 5)), "Ackerbau"]
+#>    1    3    5 
+#> 2.77 0.95 0.57 
+drift_percentages_rautmann(c(1, 3, 5))
+#> [1] 2.7593000 0.9424748 0.5719342
+drift_percentages_rautmann(c(1, 3, 5), formula = "FOCUS")
+#> [1] 1.9273922 0.8160023 0.5224362
+
+# One application to early or late fruit crops
+drift_data_JKI[[1]][as.character(c(3, 5, 20, 50)), "Obstbau frueh"]
+#>     3     5    20    50 
+#> 29.20 19.89  2.77  0.30 
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group = "fruit, early")
+#> [1] 29.1973659 19.8844422  2.7618138  0.3012008
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group = "fruit, early", formula = "FOCUS")
+#> [1] 26.1193421 18.5428680  2.6038558  0.2940792
+drift_data_JKI[[1]][as.character(c(3, 5, 20, 50)), "Obstbau spaet"]
+#>     3     5    20    50 
+#> 15.73  8.41  1.09  0.22 
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group = "fruit, late")
+#> [1] 15.7246994  8.4108487  1.0813887  0.2155992
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group = "fruit, late", formula = "FOCUS")
+#> [1] 13.1414350  7.5123244  1.0359007  0.2118734
+
+# We get a continuum if the waterbody covers the hinge distance (11.4 m for 1 early app to fruit)
+drift_percentages_rautmann(seq(10, 13, by = 0.2), crop_group = "fruit, early", formula = "FOCUS")
+#>  [1] 11.387305 11.226663 11.071207 10.900867 10.676586 10.402213 10.081298
+#>  [8]  9.717114  9.332499  8.969067  8.625333  8.299938  7.991637  7.699285
+#> [15]  7.421831  7.158309
+x <- seq(1, 30, by = 0.1)
+d <- drift_percentages_rautmann(x, crop_group = "fruit, early", formula = "FOCUS")
+plot(x, d, type = "l",
+  xlab = "Distance of near edge [m]", 
+  ylab = "Mean drift percentage over waterbody width",
+  main = "One application to fruit, early")
+abline(v = 11.4, lty = 2)
+
+
+
+
+ + +
+ + + +
+ + + + + + + diff --git a/docs/reference/drift_percentages_rautmann_formula.html b/docs/reference/drift_percentages_rautmann_formula.html deleted file mode 100644 index 63dba8a..0000000 --- a/docs/reference/drift_percentages_rautmann_formula.html +++ /dev/null @@ -1,120 +0,0 @@ - -Calculate the drift percentages according to the Rautmann formula — drift_percentages_rautmann_formula • pfm - Skip to contents - - -
-
-
- -
-

Calculate the drift percentages according to the Rautmann formula

-
- -
-

Usage

-
drift_percentages_rautmann_formula(
-  distances,
-  applications = 1,
-  crop_group_focus = c("arable", "hops", "vines, late", "vines, early", "fruit, late",
-    "fruit, early", "aerial")
-)
-
- -
-

Arguments

-
distances
-

The distances in m for which to get PEC values

- - -
applications
-

Number of applications for selection of drift percentile

- - -
crop_group_focus
-

One of the crop groups as used in drift_parameters_focus

- -
- - -
-

Examples

-
# Compare JKI data with Rautmann formula
-# One application on field crops, for 1 m, 3 m and 5 m distance
-drift_data_JKI[[1]][as.character(c(1, 3, 5)), "Ackerbau"]
-#>    1    3    5 
-#> 2.77 0.95 0.57 
-drift_percentages_rautmann_formula(c(1, 3, 5))
-#> [1] 2.7593000 0.9424748 0.5719342
-
-# One application to early or late fruit crops
-drift_data_JKI[[1]][as.character(c(3, 5, 20, 50)), "Obstbau frueh"]
-#>     3     5    20    50 
-#> 29.20 19.89  2.77  0.30 
-drift_percentages_rautmann_formula(c(3, 5, 20, 50), crop_group = "fruit, early")
-#> [1] 29.1973659 19.8844422  2.7618138  0.3012008
-drift_data_JKI[[1]][as.character(c(3, 5, 20, 50)), "Obstbau spaet"]
-#>     3     5    20    50 
-#> 15.73  8.41  1.09  0.22 
-drift_percentages_rautmann_formula(c(3, 5, 20, 50), crop_group = "fruit, late")
-#> [1] 15.7246994  8.4108487  1.0813887  0.2155992
-
-
-
- - -
- - - -
- - - - - - - diff --git a/docs/reference/index.html b/docs/reference/index.html index 24f3012..d39b896 100644 --- a/docs/reference/index.html +++ b/docs/reference/index.html @@ -197,9 +197,9 @@ published by the JKI
Regression parameters for the Rautmann drift data
- drift_percentages_rautmann_formula() + drift_percentages_rautmann()
-
Calculate the drift percentages according to the Rautmann formula
+
Calculate drift percentages based on Rautmann data
PEC_sw_drainage_UK() -- cgit v1.2.1