diff options
| author | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2026-06-22 18:01:11 +0200 |
|---|---|---|
| committer | Ranke Johannes <johannes.ranke@agroscope.admin.ch> | 2026-06-22 18:01:11 +0200 |
| commit | e0c130005ee7adbac9b832ea8157712419d51b7e (patch) | |
| tree | f5c188285ee3abd9edda16a6bb96b6142c80afba /docs/reference/perc_runoff_exposit.md | |
| parent | f8fdbc3237d12d5511058d2c0c40f3e99debe682 (diff) | |
Update static docs
Diffstat (limited to 'docs/reference/perc_runoff_exposit.md')
| -rw-r--r-- | docs/reference/perc_runoff_exposit.md | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/docs/reference/perc_runoff_exposit.md b/docs/reference/perc_runoff_exposit.md new file mode 100644 index 0000000..9166e2c --- /dev/null +++ b/docs/reference/perc_runoff_exposit.md @@ -0,0 +1,53 @@ +# Runoff loss percentages as used in Exposit 3 + +A table of the loss percentages used in Exposit 3 for the twelve +different Koc classes + +## Usage + +``` r +perc_runoff_exposit +``` + +## 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 + +- Koc_lower_bound: + + The lower bound of the Koc class + +- dissolved: + + The percentage of the applied substance transferred to an adjacent + water body in the dissolved phase + +- bound: + + The percentage of the applied substance transferred to an adjacent + water body bound to eroding particles + +## Source + +Excel 3.02 spreadsheet available from +<https://www.bvl.bund.de/SharedDocs/Downloads/04_Pflanzenschutzmittel/zul_umwelt_exposit.html> + +## Examples + +``` r +print(perc_runoff_exposit) +#> Koc_lower_bound dissolved bound +#> 0-20 0 [L/kg] 0.110 0.000 +#> >20-50 20 [L/kg] 0.151 0.000 +#> >50-100 50 [L/kg] 0.197 0.000 +#> >100-200 100 [L/kg] 0.248 0.001 +#> >200-500 200 [L/kg] 0.224 0.004 +#> >500-1000 500 [L/kg] 0.184 0.020 +#> >1000-2000 1000 [L/kg] 0.133 0.042 +#> >2000-5000 2000 [L/kg] 0.084 0.091 +#> >5000-10000 5000 [L/kg] 0.037 0.159 +#> >10000-20000 10000 [L/kg] 0.031 0.192 +#> >20000-50000 20000 [L/kg] 0.014 0.291 +#> >50000 50000 [L/kg] 0.001 0.451 +``` |
