Nothing
tgi_no_sat_expo <- function() {
description <- "One compartment TGI model with with exponential tumor growth, without saturation."
ini({
lts0 <- 0.8; label("Initial tumor size (TS0)")
lka <- 0.45 ; label("Absorption rate (Ka)")
lcl <- 1 ; label("Clearance (CL)")
lvc <- 3.45 ; label("Central volume of distribution (V)")
lkge <- 0.7; label("FIrst-order exponential growth rate")
CcpropSd <- 0.5 ; label("PK proportional residual error (fraction)")
tumorSizepropSd <- 0.5 ; label("Tumor size proportional residual error (fraction)")
tumorSizeaddSd <- 30 ; label("Tumor size additive residual error (tumor volume)")
})
model({
ts0 <- exp(lts0)
ka <- exp(lka)
cl <- exp(lcl)
vc <- exp(lvc)
kge <- exp(lkge)
kel <- cl / vc
tumorSize(0) <- ts0
d/dt(depot) <- -ka*depot
d/dt(central) <- ka*depot-kel*central
d/dt(tumorSize) <- kge*tumorSize
Cc <- central / vc
Cc ~ prop(CcpropSd)
tumorSize ~ prop(tumorSizepropSd) + add(tumorSizeaddSd)
})
}
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.