-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use non-model library for testing cases
- Loading branch information
1 parent
a14325e
commit 053b10e
Showing
6 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
DESCRIPTION: | ||
The administration is via a bolus. | ||
The PK model has one compartment (volume V) and a linear elimination (elimination rate k). | ||
|
||
|
||
[LONGITUDINAL] | ||
input = {V, k} | ||
|
||
PK: | ||
; PK model definition | ||
Cc = pkmodel(V, k) | ||
|
||
OUTPUT: | ||
output = Cc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
DESCRIPTION: | ||
The administration is extravascular with a first order absorption (rate constant ka) and a lag time (Tlag). | ||
The PK model has one compartment (volume V) and a linear elimination (clearance Cl). | ||
|
||
|
||
[LONGITUDINAL] | ||
input = {Tlag, ka, V, Cl} | ||
|
||
PK: | ||
; PK model definition | ||
Cc = pkmodel(Tlag, ka, V, Cl) | ||
|
||
OUTPUT: | ||
output = Cc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters