From db9ae6a0c9cecb92048fde6f06af1da183c09b5f Mon Sep 17 00:00:00 2001 From: Johannes Ranke Date: Thu, 19 Nov 2020 15:41:24 +0100 Subject: Depend on parallel, doc improvements By depending on parallel instead of importing it, functions to set up and stop a cluster are always available when mkin is loaded. The use of multicore processing in mmkin on Windows is now documented in the help file, which brings mkin closer to a version 1.0 #9. --- docs/dev/reference/f_time_norm_focus.html | 283 ++++++++++++++++++++++++++++++ 1 file changed, 283 insertions(+) create mode 100644 docs/dev/reference/f_time_norm_focus.html (limited to 'docs/dev/reference/f_time_norm_focus.html') diff --git a/docs/dev/reference/f_time_norm_focus.html b/docs/dev/reference/f_time_norm_focus.html new file mode 100644 index 00000000..a95234a7 --- /dev/null +++ b/docs/dev/reference/f_time_norm_focus.html @@ -0,0 +1,283 @@ + + + + + + + + +Normalisation factors for aerobic soil degradation according to FOCUS guidance — f_time_norm_focus • mkin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+ + + + +
+ +
+
+ + +
+

Time step normalisation factors for aerobic soil degradation as described +in Appendix 8 to the FOCUS kinetics guidance (FOCUS 2014, p. 369).

+
+ +
f_time_norm_focus(object, ...)
+
+# S3 method for numeric
+f_time_norm_focus(
+  object,
+  moisture = NA,
+  field_moisture = NA,
+  temperature = object,
+  Q10 = 2.58,
+  walker = 0.7,
+  f_na = NA,
+  ...
+)
+
+# S3 method for mkindsg
+f_time_norm_focus(
+  object,
+  study_moisture_ref_source = c("meta", "focus"),
+  Q10 = 2.58,
+  walker = 0.7,
+  f_na = NA,
+  ...
+)
+ +

Arguments

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
object

An object containing information used for the calculations

...

Currently not used

moisture

Numeric vector of moisture contents in \% w/w

field_moisture

Numeric vector of moisture contents at field capacity +(pF2) in \% w/w

temperature

Numeric vector of temperatures in °C

Q10

The Q10 value used for temperature normalisation

walker

The Walker exponent used for moisture normalisation

f_na

The factor to use for NA values. If set to NA, only factors +for complete cases will be returned.

study_moisture_ref_source

Source for the reference value +used to calculate the study moisture

+ +

References

+ +

FOCUS (2006) “Guidance Document on Estimating Persistence +and Degradation Kinetics from Environmental Fate Studies on Pesticides in +EU Registration” Report of the FOCUS Work Group on Degradation Kinetics, +EC Document Reference Sanco/10058/2005 version 2.0, 434 pp, +http://esdac.jrc.ec.europa.eu/projects/degradation-kinetics +FOCUS (2014) “Generic guidance for Estimating Persistence +and Degradation Kinetics from Environmental Fate Studies on Pesticides in +EU Registration” Report of the FOCUS Work Group on Degradation Kinetics, +Version 1.1, 18 December 2014 +http://esdac.jrc.ec.europa.eu/projects/degradation-kinetics

+

See also

+ + + +

Examples

+
f_time_norm_focus(25, 20, 25) # 1.37, compare FOCUS 2014 p. 184 +
#> [1] 1.373956
+D24_2014$meta +
#> study usda_soil_type study_moisture_ref_type rel_moisture +#> 1 Cohen 1991 Silt loam <NA> NA +#> 2 Liu and Adelfinskaya 2011 Silt loam pF1 0.5 +#> 3 Liu and Adelfinskaya 2011 Loam pF1 0.5 +#> 4 Liu and Adelfinskaya 2011 Loam pF1 0.5 +#> 5 Liu and Adelfinskaya 2011 Loamy sand pF1 0.5 +#> temperature +#> 1 25 +#> 2 20 +#> 3 20 +#> 4 20 +#> 5 20
# No moisture normalisation in the first dataset, so we use f_na = 1 to get +# temperature only normalisation as in the EU evaluation +f_time_norm_focus(D24_2014, study_moisture_ref_source = "focus", f_na = 1) +
#> $time_norm was set to +#> [1] 1.6062378 0.7118732 0.7156063 0.7156063 0.8977124
#> [1] 1.6062378 0.7118732 0.7156063 0.7156063 0.8977124
+
+ +
+ + + +
+ + + + + + + + -- cgit v1.2.1