The datasets were used for the comparative validation of several kinetic evaluation software packages (Ranke, 2014).

test_data_from_UBA_2014

Format

A list containing three datasets as an R6 class defined by mkinds. Each dataset has, among others, the following components

title

The name of the dataset, e.g. UBA_2014_WS_river

data

A data frame with the data in the form expected by mkinfit

Source

Ranke (2014) Prüfung und Validierung von Modellierungssoftware als Alternative zu ModelMaker 4.0, Umweltbundesamt Projektnummer 27452

Examples

# This is a level P-II evaluation of the dataset according to the FOCUS kinetics # guidance. Due to the strong correlation of the parameter estimates, the # covariance matrix is not returned. Note that level P-II evaluations are # generally considered deprecated due to the frequent occurrence of such # large parameter correlations, among other reasons (e.g. the adequacy of the # model). m_ws <- mkinmod(parent_w = mkinsub("SFO", "parent_s"), parent_s = mkinsub("SFO", "parent_w"))
#> Error in mkinmod(parent_w = mkinsub("SFO", "parent_s"), parent_s = mkinsub("SFO", "parent_w")): konnte Funktion "mkinmod" nicht finden
f_river <- mkinfit(m_ws, test_data_from_UBA_2014[[1]]$data, quiet = TRUE)
#> Error in mkinfit(m_ws, test_data_from_UBA_2014[[1]]$data, quiet = TRUE): konnte Funktion "mkinfit" nicht finden
plot_sep(f_river)
#> Error in plot_sep(f_river): konnte Funktion "plot_sep" nicht finden
summary(f_river)$bpar
#> Error in summary(f_river): Objekt 'f_river' nicht gefunden
mkinerrmin(f_river)
#> Error in mkinerrmin(f_river): konnte Funktion "mkinerrmin" nicht finden
# This is the evaluation used for the validation of software packages # in the expertise from 2014 m_soil <- mkinmod(parent = mkinsub("SFO", c("M1", "M2")), M1 = mkinsub("SFO", "M3"), M2 = mkinsub("SFO", "M3"), M3 = mkinsub("SFO"), use_of_ff = "max")
#> Error in mkinmod(parent = mkinsub("SFO", c("M1", "M2")), M1 = mkinsub("SFO", "M3"), M2 = mkinsub("SFO", "M3"), M3 = mkinsub("SFO"), use_of_ff = "max"): konnte Funktion "mkinmod" nicht finden
f_soil <- mkinfit(m_soil, test_data_from_UBA_2014[[3]]$data, quiet = TRUE)
#> Error in mkinfit(m_soil, test_data_from_UBA_2014[[3]]$data, quiet = TRUE): konnte Funktion "mkinfit" nicht finden
plot_sep(f_soil, lpos = c("topright", "topright", "topright", "bottomright"))
#> Error in plot_sep(f_soil, lpos = c("topright", "topright", "topright", "bottomright")): konnte Funktion "plot_sep" nicht finden
summary(f_soil)$bpar
#> Error in summary(f_soil): Objekt 'f_soil' nicht gefunden
mkinerrmin(f_soil)
#> Error in mkinerrmin(f_soil): konnte Funktion "mkinerrmin" nicht finden