summaryrefslogtreecommitdiff
path: root/docs/reference/GUS.md
blob: f6e4f558caf8674aba0030a16d7a44db4578f83d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# Groundwater ubiquity score based on Gustafson (1989)

The groundwater ubiquity score GUS is calculated according to the
following equation

## Usage

``` r
GUS(...)

# S3 method for class 'numeric'
GUS(DT50, Koc, ...)

# S3 method for class 'chent'
GUS(
  chent,
  degradation_value = "DT50ref",
  lab_field = "laboratory",
  redox = "aerobic",
  sorption_value = "Kfoc",
  degradation_aggregator = geomean,
  sorption_aggregator = geomean,
  ...
)

# S3 method for class 'GUS_result'
print(x, ..., digits = 1)
```

## Arguments

- ...:

  Included in the generic to allow for further arguments later.
  Therefore this also had to be added to the specific methods.

- DT50:

  Half-life of the chemical in soil. Should be a field half-life
  according to Gustafson (1989). However, leaching to the sub-soil can
  not completely be excluded in field dissipation experiments and
  Gustafson did not refer to any normalisation procedure, but says the
  field study should be conducted under use conditions.

- Koc:

  The sorption constant normalised to organic carbon. Gustafson does not
  mention the nonlinearity of the sorption constant commonly found and
  usually described by Freundlich sorption, therefore it is unclear at
  which reference concentration the Koc should be observed (and if the
  reference concentration would be in soil or in porewater).

- chent:

  If a chent is given with appropriate information present in its chyaml
  field, this information is used, with defaults specified below.

- degradation_value:

  Which of the available degradation values should be used?

- lab_field:

  Should laboratory or field half-lives be used? This defaults to lab in
  this implementation, in order to avoid double-accounting for mobility.
  If comparability with the original GUS values given by
  Gustafson (1989) is desired, non-normalised first-order field
  half-lives obtained under actual use conditions should be used.

- redox:

  Aerobic or anaerobic degradation data

- sorption_value:

  Which of the available sorption values should be used? Defaults to
  Kfoc as this is what is generally available from the European
  pesticide peer review process. These values generally use a reference
  concentration of 1 mg/L in porewater, that means they would be
  expected to be Koc values at a concentration of 1 mg/L in the water
  phase.

- degradation_aggregator:

  Function for aggregating half-lives

- sorption_aggregator:

  Function for aggregation Koc values

- x:

  An object of class GUS_result to be printed

- digits:

  The number of digits used in the print method

## Value

A list with the DT50 and Koc used as well as the resulting score of
class GUS_result

## Details

\$\$GUS = \log\_{10} DT50\_{soil} (4 - \log\_{10} K\_{oc})\$\$

## References

Gustafson, David I. (1989) Groundwater ubiquity score: a simple method
for assessing pesticide leachability. *Environmental toxicology and
chemistry* **8**(4) 339–57.

## Author

Johannes Ranke

Contact - Imprint