Pharmacokinetics
How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?
Pharmacokinetics is the study of "What the body does to the drug"—the journey a chemical takes from the moment it enters your mouth to the moment it leaves your system. Known as the "ADME" process (Absorption, Distribution, Metabolism, and Excretion), pharmacokinetics determines how much of a drug actually reaches its "Target" and how long it stays there. From the "First-Pass Effect" in the liver to the "Half-life" of your morning coffee, pharmacokinetics is the science of "Timing and Dose." By studying these pathways, we learn how to design medicines that are powerful enough to heal but safe enough to not poison the person they are trying to save.
Remembering[edit]
- Pharmacokinetics — The branch of pharmacology concerned with the movement of drugs within the body.
- ADME:
- Absorption — How the drug gets into the bloodstream (e.g., through the stomach or the skin).
- Distribution — How the drug travels through the blood to the organs and tissues.
- Metabolism — How the body (mostly the liver) "Breaks down" the drug into new chemicals.
- Excretion — How the drug leaves the body (mostly through urine or breath).
- Bioavailability — The percentage of a dose that actually reaches the bloodstream (e.g., an IV injection has 100% bioavailability).
- Half-life (t½) — The time it takes for the concentration of a drug in the body to drop by 50%.
- First-Pass Effect — When the liver "Cleans" a drug before it even reaches the rest of the body, often destroying much of it.
- Therapeutic Window — The "Safe Range" between a dose that is "Too small to work" and a dose that is "Toxic."
- Clearance — The rate at which the body "Cleans" the drug out of the blood.
- Cytochrome P450 — A family of enzymes in the liver that are the "Main engines" for breaking down most drugs.
Understanding[edit]
Pharmacokinetics is understood through Flow and Barrier Crossing.
1. The Obstacle Course (Absorption): When you swallow a pill, it is in "Enemy Territory."
- It must survive the "Acid" in your stomach.
- It must pass through the "Wall" of your small intestine.
- It must survive the "Liver Guard" (First-Pass Effect).
- Only then does it reach the "Bloodstream Highway." This is why some drugs must be "Injected" or "Inhaled"—to bypass the stomach obstacle course.
2. The Balancing Act (The Therapeutic Window): Every drug is a "Poison" if the dose is high enough.
- If you take too little, the bacteria/virus wins.
- If you take too much, your liver/kidneys die.
- Pharmacokinetics helps us find the "Sweet Spot" where the drug is always "High enough" to work but "Low enough" to be safe.
3. The Waiting Game (Half-life): Why do you take some pills "Once a day" and others "Every 4 hours"?
- If a drug has a "Short Half-life," your body cleans it out quickly, so you need more doses.
- If it has a "Long Half-life," it "Builds up" in your system over time.
- If you take a second dose before the first one is gone, you might accidentally "Overdose."
The 'Grapefruit Juice' Warning': A classic pharmacokinetic interaction. Grapefruit juice "Blocks" the enzymes in your liver that break down certain heart medications. This makes the drug "Build up" to dangerous levels in your blood, effectively turning a normal dose into a toxic one.
Applying[edit]
Modeling 'The Drug Concentration' (Predicting how much drug is left after X hours): <syntaxhighlight lang="python"> def calculate_drug_remaining(initial_dose, half_life_hours, hours_passed):
"""
Shows how the body 'Cleans' the system.
"""
# Formula: Final = Initial * (0.5 ^ (time / half_life))
number_of_half_lives = hours_passed / half_life_hours
remaining = initial_dose * (0.5 ** number_of_half_lives)
return {
"Initial Dose": f"{initial_dose}mg",
"Time Passed": f"{hours_passed} hours",
"Remaining in Body": f"{round(remaining, 2)}mg"
}
- Case: Caffeine (Half-life ~5 hours). You drink 100mg. How much at bedtime (10 hours later)?
print(calculate_drug_remaining(100, 5, 10)) </syntaxhighlight>
- Pharmacokinetic Landmarks
- The 'Enteric Coating' → The technology of putting a "Shield" on a pill so it doesn't melt in the stomach acid but waits until it reaches the intestine.
- Steady State → The point (usually after 4-5 half-lives) where the amount of drug you "Take" matches the amount your body "Excretes," keeping the level perfectly flat.
- Liver Failure → When the "Metabolism engine" breaks, turning even "Safe" drugs like Tylenol into deadly poisons.
- Blood-Brain Barrier → The "Ultimate Wall" that protects the brain from most chemicals. Pharmacokinetics is the art of "Tricking" this wall to let medicine through.
Analyzing[edit]
| Feature | IV Injection | Oral Pill |
|---|---|---|
| Absorption Speed | Instant (0 seconds) | Slow (20-60 minutes) |
| Bioavailability | 100% | Varies (usually 10-70%) |
| First-Pass Effect | Bypassed (Safe from Liver) | High (Liver attacks it) |
| Best For | Emergencies / Pain | Daily maintenance |
The Concept of "Volume of Distribution" (Vd): Analyzing where the drug "Hides." If a drug likes "Fat," it will disappear into your body fat and stay there for weeks (High Vd). If it likes "Water," it stays in your blood and is peed out quickly (Low Vd). Knowing "Where the drug goes" is essential for setting the dose.
Evaluating[edit]
Evaluating pharmacokinetics:
- Personalized Medicine: Why does a dose that works for a "Man" not work for a "Woman" or a "Child"? (The "Average Human" myth in drug testing).
- Ethics of Testing: How do we find the "Half-life" of a new drug without "Risking the life" of a volunteer?
- The Elderly: As people age, their kidneys and liver "Slow down." Are we "Over-medicating" the elderly because we aren't adjusting for their slower pharmacokinetics?
- Drug Interferences: If a person takes 10 different pills, how can we possibly know how they will "Interact" in the liver?
Creating[edit]
Future Frontiers:
- Smart Pills: Pills with "Sensors" that only "Release" the drug when they reach the exact spot in the body that is sick.
- 3D-Printed Doses: Printing a "Custom Pill" at the pharmacy that has the exact "Half-life and Dose" matched to your specific DNA and weight.
- Artificial Livers: Using "Lab-grown liver cells" to test new drugs instantly, removing the need for animal testing.
- The 'PK' App: An app on your phone that "Tracks" your blood levels of every drug (Caffeine, Ibuprofen, Meds) in real-time, warning you before you take a dangerous dose.