Percentage drift values for which to calculate PECsw.
-'drift_data' and 'distances' if not NULL.
+Overrides 'drift_data' and 'distances' if not NULL.
drift_data
Source of drift percentage data. If 'JKI', the 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
+included in the package is used. If 'RF', the Rautmann drift data are calculated
+either in the original form or integrated over the width of the water body, depending
+on the 'formula' argument.
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
+
+
+
water_width
+
Width of the water body in cm
+
+
+
side_angle
+
The angle of the side of the water relative to the bottom which
+is assumed to be horizontal, in degrees. The SYNOPS model assumes 45 degrees here.
+
+
rate_units
Defaults to g/ha
@@ -163,6 +182,24 @@ as used in drift_parameters_focus.
#> 0.92333333 0.31666667 0.19000000 0.16000000 0.09666667 0.05000000 0.02000000 #> 0.03 % #> 0.01000000
+
+# The influence of assuming a 45° angle of the sides of the waterbody and the width of the
+# waterbody can be illustrated
+PEC_sw_drift(100)
+#> 1 m 5 m 10 m 20 m
+#> 0.92333333 0.19000000 0.09666667 0.05000000
+PEC_sw_drift(100, drift_data ="RF")
+#> 1 m 5 m 10 m 20 m
+#> 0.91976667 0.19064473 0.09680051 0.04915079
+PEC_sw_drift(100, drift_data ="RF", formula ="FOCUS")
+#> 1 m 5 m 10 m 20 m
+#> 0.64246407 0.17414541 0.09235842 0.04798749
+PEC_sw_drift(100, drift_data ="RF", formula ="FOCUS", side_angle =45)
+#> 1 m 5 m 10 m 20 m
+#> 0.91780582 0.24877916 0.13194060 0.06855356
+PEC_sw_drift(100, drift_data ="RF", formula ="FOCUS", side_angle =45, water_width =200)
+#> 1 m 5 m 10 m 20 m
+#> 0.30085000 0.09468652 0.05201349 0.02758547