aboutsummaryrefslogtreecommitdiff
path: root/R/mkinmod.R
diff options
context:
space:
mode:
authorJohannes Ranke <jranke@uni-bremen.de>2020-05-06 21:33:12 +0200
committerJohannes Ranke <jranke@uni-bremen.de>2020-05-06 21:33:12 +0200
commit1195dfc8bdbf7c131d6c6ec30fedbbe746af1bee (patch)
tree4a1f3f252c61ee6ed8890a3ea79f06c64730b411 /R/mkinmod.R
parentbed7630b41738271e3022d498df773f5157fcbac (diff)
Change implementation of analytical solutions
Preparing for symbolic solutions for more than one compound
Diffstat (limited to 'R/mkinmod.R')
-rw-r--r--R/mkinmod.R40
1 files changed, 40 insertions, 0 deletions
diff --git a/R/mkinmod.R b/R/mkinmod.R
index ca1402fd..099e1155 100644
--- a/R/mkinmod.R
+++ b/R/mkinmod.R
@@ -421,6 +421,46 @@ mkinmod <- function(..., use_of_ff = "min", speclist = NULL, quiet = FALSE, verb
}
# }}}
+ # Attach a degradation function if an analytical solution is available {{{
+ parent_type = spec[[1]]$type
+ parent_name = names(spec)[[1]]
+ if (length(spec) == 1) {
+ odeparm_map <- switch(parent_type,
+ SFO = c(
+ k = if(use_of_ff == "min") paste("k", parent_name, "sink", sep = "_")
+ else paste("k", parent_name, sep = "_")),
+ FOMC = c(alpha = "alpha", beta = "beta"),
+ IORE = c(
+ k__iore = if(use_of_ff == "min") paste("k__iore", parent_name, "sink", sep = "_")
+ else paste("k__iore", parent_name, sep = "_"),
+ N = paste("N", parent_name, sep = "_")),
+ DFOP = c(k1 = "k1", k2 = "k2", g = "g"),
+ HS = c(k1 = "k1", k2 = "k2", tb = "tb"),
+ SFORB = c(
+ k_12 = paste("k", parent_name, "free_bound", sep = "_"),
+ k_21 = paste("k", parent_name, "bound_free", sep = "_"),
+ k_1output = paste("k", parent_name, "free_sink", sep = "_")),
+ logistic = c(kmax = "kmax", k0 = "k0", r = "r")
+ )
+ odeparm_rev_map <- names(odeparm_map)
+ names(odeparm_rev_map) <- odeparm_map
+
+ model$deg_func <- function(odeini, odeparms, outtimes) {
+ parent_func <- getFromNamespace(paste0(parent_type, ".solution"), "mkin")
+ odeparm_list <- as.list(odeparms)
+ names(odeparm_list) <- odeparm_rev_map[names(odeparm_list)]
+
+ values <- do.call(parent_func,
+ args = c(
+ list(t = outtimes, parent.0 = odeini[1]),
+ odeparm_list))
+ out <- data.frame(outtimes, values)
+ names(out) <- c("time", parent_name)
+ return(out)
+ }
+ }
+ # }}}
+
class(model) <- "mkinmod"
return(model)
}

Contact - Imprint