From 6e4a152925011528c21937f12bc53042a53f72de Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 11 Jun 2015 10:13:18 +0200 Subject: JKI drift percentage data for field crops and pome/stone fruit --- README.md | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index d0d08ab..1f70a86 100644 --- a/README.md +++ b/README.md @@ -92,3 +92,29 @@ PEC_soil(100, int = 0.25) ``` ## [1] 0.1 ``` + +### Rautmann drift data + +Some of the drift percentage data published by the JKI are included. To +see the data for one application: + + +```r +drift_data_JKI[1] +``` + +``` +## [[1]] +## crop +## distance Ackerbau Obstbau früh Obstbau spät +## 1.000000 2.77 NA NA +## 3.000000 NA 29.20 15.73 +## 5.000000 0.57 19.89 8.41 +## 10.000000 0.29 11.81 3.60 +## 15.000000 0.20 5.55 1.81 +## 20.000000 0.15 2.77 1.09 +## 30.000000 0.10 1.04 0.54 +## 40.000000 0.07 0.52 0.32 +## 50.000000 0.06 0.30 0.22 +``` + -- cgit v1.2.1 From ea9b75183bcf41fcdd6f61ec6060e94c4bc321a2 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 11 Jun 2015 12:13:47 +0200 Subject: Add simple drift PEC ini calculations These are tested for field crops with the CRD spreadsheet --- README.md | 43 ++++++++++++++++++++++++++++++++----------- 1 file changed, 32 insertions(+), 11 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 1f70a86..1e9c805 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,13 @@ Read in and analyse a cwa file: ```r library(pfm) +``` + +``` +## Loading required package: R6 +``` + +```r example_cwa <- read.TOXSWA_cwa("00003s_pa.cwa") plot(example_cwa) ``` @@ -105,16 +112,30 @@ drift_data_JKI[1] ``` ## [[1]] -## crop -## distance Ackerbau Obstbau früh Obstbau spät -## 1.000000 2.77 NA NA -## 3.000000 NA 29.20 15.73 -## 5.000000 0.57 19.89 8.41 -## 10.000000 0.29 11.81 3.60 -## 15.000000 0.20 5.55 1.81 -## 20.000000 0.15 2.77 1.09 -## 30.000000 0.10 1.04 0.54 -## 40.000000 0.07 0.52 0.32 -## 50.000000 0.06 0.30 0.22 +## crop +## distance Ackerbau Obstbau früh Obstbau spät +## 1 2.77 NA NA +## 3 NA 29.20 15.73 +## 5 0.57 19.89 8.41 +## 10 0.29 11.81 3.60 +## 15 0.20 5.55 1.81 +## 20 0.15 2.77 1.09 +## 30 0.10 1.04 0.54 +## 40 0.07 0.52 0.32 +## 50 0.06 0.30 0.22 +``` + +### PEC surface water due to drift + +Initial PEC values for an application of 100 g/ha in the vicinity of a 30 cm +deep water body are obtained using + + +```r +PEC_sw_drift(100, applications = 1) ``` +``` +## 1 m 5 m 10 m 20 m +## 0.92333333 0.19000000 0.09666667 0.05000000 +``` -- cgit v1.2.1 From cb0d72e2c2d431bd32ffb129b62ea1a522cbdfeb Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 11 Jun 2015 13:09:10 +0200 Subject: Rename PEC_sw_drift() to PEC_sw_drift_ini() --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 1e9c805..9262917 100644 --- a/README.md +++ b/README.md @@ -132,10 +132,9 @@ deep water body are obtained using ```r -PEC_sw_drift(100, applications = 1) +PEC_sw_drift_ini(100, applications = 1) ``` ``` -## 1 m 5 m 10 m 20 m -## 0.92333333 0.19000000 0.09666667 0.05000000 +## Error in eval(expr, envir, enclos): konnte Funktion "PEC_sw_drift_ini" nicht finden ``` -- cgit v1.2.1 From d3daa7b73fa5d0508ff51a843247d126c2a11691 Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 11 Jun 2015 13:17:13 +0200 Subject: Generate README.md with current pfm version --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 9262917..9e36a69 100644 --- a/README.md +++ b/README.md @@ -136,5 +136,6 @@ PEC_sw_drift_ini(100, applications = 1) ``` ``` -## Error in eval(expr, envir, enclos): konnte Funktion "PEC_sw_drift_ini" nicht finden +## 1 m 5 m 10 m 20 m +## 0.92333333 0.19000000 0.09666667 0.05000000 ``` -- cgit v1.2.1