Nothing
PK_double_sim_11 <- function() {
description <- "PK double absorption model with simultaneous first order absorptions"
ini({
lka1 <- 0.45 ; label("First order Absorption rate from first site (Ka)")
lka2 <- 0.45 ; label("First order Absorption rate from second site (Ka)")
lcl <- 1 ; label("Clearance (CL)")
lvc <- 3 ; label("Central volume of distribution (V)")
propSd <- 0.5 ; label("Proportional residual error (fraction)")
lgfdepot1 <- logit(0.7);
lalag <- log (9);
})
model({
ka1 <- exp(lka1)
ka2 <- exp(lka2)
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) <- -ka2*depot2
lag(depot2) <- alag
f(depot2) <- 1-fdepot1
d/dt(central) <- ka1*depot1+ka2*depot2 - 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.