From 45c9eb16dd317421bf594b7d2aebb11386a9de33 Mon Sep 17 00:00:00 2001
From: Ranke Johannes Defaults to g/ha. For backwards compatibility, only used
-if the specified rate does not have units::units].
It is recommened to specify the arguments rate
, water_depth
and
-water_width
using units::units from the units
package.
water_width
using units::units from the units
package.
rate
, Koc
, DT50
, t_drainage
,
+V_ditch
and V_drainage
using units::units from the units
package.
It is recommened to specify the arguments rate
, Koc
, DT50
, t_runoff
, V_ditch
and V_event
-using units::units from the units
package.
units
package.
drift_percentages_rautmann(
distances,
applications = 1,
- crop_group_focus = c("arable", "hops", "vines, late", "vines, early", "fruit, late",
+ crop_group_RF = c("arable", "hops", "vines, late", "vines, early", "fruit, late",
"fruit, early", "aerial"),
formula = c("Rautmann", "FOCUS"),
widths = 1
@@ -61,7 +61,7 @@
Number of applications for selection of drift percentile
-crop_group_focus
+crop_group_RF
One of the crop groups as used in drift_parameters_focus
@@ -88,7 +88,7 @@ FOrum for the Co-ordination of pesticde fate models and their USe.
Examples
- # Compare JKI data with Rautmann formula
+ # Compare JKI data with Rautmann and FOCUS formulas for arable crops (default)
# 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
@@ -102,26 +102,26 @@ FOrum for the Co-ordination of pesticde fate models and their USe.
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")
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group_RF = "fruit, early")
#> [1] 29.1973659 19.8844422 2.7618138 0.3012008
-drift_percentages_rautmann(c(3, 5, 20, 50), crop_group = "fruit, early",
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group_RF = "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")
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group_RF = "fruit, late")
#> [1] 15.7246994 8.4108487 1.0813887 0.2155992
-drift_percentages_rautmann(c(3, 5, 20, 50), crop_group = "fruit, late",
+drift_percentages_rautmann(c(3, 5, 20, 50), crop_group_RF = "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)
x <- seq(3, 30, by = 0.1)
-d <- drift_percentages_rautmann(x, crop_group = "fruit, early", formula = "FOCUS")
+d <- drift_percentages_rautmann(x, crop_group_RF = "fruit, early", formula = "FOCUS")
plot(x, d, type = "l",
- xlab = "Distance of near edge [m]",
+ 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)
--
cgit v1.2.1