Nothing
PK_double_sim_10 <- function() {
description <- "PK double absorption model with simultaneous first order and zero order absorptions"
ini({
lka1 <- 0.45 ; label("First order Absorption rate (Ka)")
tk02 <- 0.4 ; label("Zero order absorption rate from second site (K02)")
lcl <- 1 ; label("Clearance (CL)")
lvc <- 3 ; label("Central volume of distribution (V)")
propSd <- 0.5 ; label("Proportional residual error (fraction)")
lgfdepot1 <- logit(0.8);
lalag <- log (9);
})
model({
ka1 <- exp(lka1)
k02 <- exp(tk02)
cl <- exp(lcl)
vc <- exp(lvc)
fdepot1 <- expit(lgfdepot1)
alag <- exp(lalag)
kel <- cl/vc
d/dt(depot1) <- -ka1*depot1
f(depot1) <- fdepot1
d/dt(depot2) <- -k02
lag(depot2) <- alag
f(depot2) <- 1-fdepot1
d/dt(central) <- ka1*depot1+ k02- kel*central
Cc <- central / vc
Cc ~ prop(propSd)
})
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.