Time Effect on Kin Rate #1260
Unanswered
farmacyst99
asked this question in
Q&A
Replies: 2 comments
-
|
Hi @farmacyst99 - Can you try using [ODE]
double KINt = KIN;
if (SOLVERTIME > 0) {
KINt = KIN *pow(SOLVERTIME + 0.001, TIMEFF);
}
dxdt_CENT = -(CL/V)*CENT + (Q/V2)*PERIPH - (Q/V)*CENT;
dxdt_PERIPH = - (Q/V2)*PERIPH + (Q/V)*CENT;
dxdt_TRIP = KINt*(CENT/V) - KOUT*TRIP;Kyle |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
@kylebaron thank you it worked ! |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to implement the Ivaturi model for Fludarabine Pediatric Patients, and they have a nonlinear Kin rate which is affected by time and a constant.
This is what they have written in NONMEM
I want to implement the
KINtin my mrgsolve code which I have written as followsIt gives me the following error
Beta Was this translation helpful? Give feedback.
All reactions