diff --git a/docs/2026-01-08_AI-Research_ImprovingLisdexamfetaminePharmacokineticsApp.md b/docs/2026-01-08_AI-Research_ImprovingLisdexamfetaminePharmacokineticsApp.md index e54f49f..846bdca 100644 --- a/docs/2026-01-08_AI-Research_ImprovingLisdexamfetaminePharmacokineticsApp.md +++ b/docs/2026-01-08_AI-Research_ImprovingLisdexamfetaminePharmacokineticsApp.md @@ -4,7 +4,7 @@ This monograph serves as a definitive technical reference for the validation and enhancement of digital health applications simulating the pharmacokinetics (PK) of lisdexamfetamine dimesylate (LDX). Commissioned to address discrepancies between simulated outputs and clinical literature values, this report provides a granular analysis of the physicochemical properties, metabolic pathways, and mathematical modeling principles governing LDX disposition. -The analysis confirms that the discrepancies observed---specifically the application predicting peak plasma concentrations ($C\_{max}$) of ~20 ng/mL versus literature values of 80--130 ng/mL---are not indicative of fundamental algorithmic failure. Rather, they result from a conflation of dosage magnitude (30 mg starting dose vs. 70 mg maximal dose), population physiological variables (adult vs. pediatric volume of distribution), and steady-state accumulation dynamics. +The analysis confirms that the discrepancies observed—specifically the application predicting peak plasma concentrations ($C_{max}$) of ~20 ng/mL versus literature values of 80--130 ng/mL—are not indicative of fundamental algorithmic failure. Rather, they result from a conflation of dosage magnitude (30 mg starting dose vs. 70 mg maximal dose), population physiological variables (adult vs. pediatric volume of distribution), and steady-state accumulation dynamics. Furthermore, this report validates the TypeScript implementation provided, confirming that the "chain reaction" structural model utilized ($Absorption \to Conversion \to Elimination$) is superior to simplified Bateman functions for this specific prodrug. The report concludes with actionable parameter sets, specific code optimization recommendations, and authoritative regulatory text for user-facing disclaimers, ensuring the application aligns with FDA labeling and current pharmacometric consensus. @@ -46,7 +46,7 @@ Lisdexamfetamine Dimesylate (LDX): - **Chemical Designation:** (2S)-2,6-diamino-N-hexanamide dimethanesulfonate. -- **Molecular Formula:** $C\_{15}H\_{25}N\_{3}O \cdot (CH\_{4}O\_{3}S)\_2$.[^3] +- **Molecular Formula:** $C_{15}H_{25}N_{3}O \cdot (CH_{4}O_{3}S)_2$.[^3] - **Molecular Weight (MW):** 455.60 g/mol.[^3] @@ -56,7 +56,7 @@ Dextroamphetamine (d-amp): - **Chemical Designation:** (S)-1-phenylpropan-2-amine. -- **Molecular Formula:** $C\_{9}H\_{13}N$.[^4] +- **Molecular Formula:** $C_{9}H_{13}N$.[^4] - **Molecular Weight (MW):** 135.21 g/mol.[^5] @@ -66,7 +66,7 @@ Dextroamphetamine (d-amp): The fundamental constant required for your simulation engine is the ratio of the active moiety's weight to the prodrug's weight. This factor converts the user's input (mg of Vyvanse) into the model's input (mg of d-amphetamine). -$$CF = \frac{MW\_{d\text{-}amp}}{MW\_{LDX}} = \frac{135.21}{455.60} \approx 0.29677$$ +**$$CF = \frac{MW_{d\text{-}amp}}{MW_{LDX}} = \frac{135.21}{455.60} \approx 0.29677$$** This coefficient indicates that **29.7%** of the capsule's mass is active drug. @@ -79,7 +79,7 @@ This coefficient indicates that **29.7%** of the capsule's mass is active drug. | 60 mg | 17.81 mg | | 70 mg (Max Recommended) | 20.78 mg | -**Implication for Simulation Accuracy:** If the application simulates the pharmacokinetics of "30 mg" without applying this factor, it treats the input as 30 mg of active d-amphetamine. This would result in a $C\_{max}$ prediction approximately 3.37 times higher than reality. Conversely, applying the factor correctly reduces the effective load to ~8.9 mg, which aligns with lower plasma concentration predictions. +**Implication for Simulation Accuracy:** If the application simulates the pharmacokinetics of "30 mg" without applying this factor, it treats the input as 30 mg of active d-amphetamine. This would result in a $C_{max}$ prediction approximately 3.37 times higher than reality. Conversely, applying the factor correctly reduces the effective load to ~8.9 mg, which aligns with lower plasma concentration predictions. * * * * @@ -97,14 +97,14 @@ Unlike immediate-release amphetamine, which is absorbed via passive diffusion in - **Linearity:** The absorption is dose-proportional across the therapeutic range (30--70 mg), indicating the transporter is not saturated. [^3] -- **Food Effect:** Food does not alter the area under the curve (AUC) or $C\_{max}$ of the active drug significantly. However, a high-fat meal delays $T\_{max}$ (time to peak concentration) by approximately 1 hour (from 3.8 hours to 4.7 hours). [^3][^8] - - _App Implication:_ The simulation can assume a constant bioavailability ($F \approx 0.96$). A sophisticated "Food" toggle could adjust the absorption rate constant ($k\_a$) to simulate the delayed onset, though for general purposes, a fasted/standard model is sufficient. +- **Food Effect:** Food does not alter the area under the curve (AUC) or $C_{max}$ of the active drug significantly. However, a high-fat meal delays $T_{max}$ (time to peak concentration) by approximately 1 hour (from 3.8 hours to 4.7 hours). [^3][^8] + - _App Implication:_ The simulation can assume a constant bioavailability ($F \approx 0.96$). A sophisticated "Food" toggle could adjust the absorption rate constant ($k_a$) to simulate the delayed onset, though for general purposes, a fasted/standard model is sufficient. ### 4.2 Biotransformation: The Rate-Limiting Hydrolysis Once absorbed into the portal circulation, LDX remains inactive. The conversion to d-amphetamine occurs primarily in the systemic circulation. -- **Site of Metabolism:** Red Blood Cells (RBCs). [^6][^1] +- **Site of Metabolism:** Red Blood Cells (RBCs). [^6][^9] - **Enzymatic Mechanism:** An aminopeptidase enzyme located in the RBC cytosol cleaves the peptide bond between lysine and d-amphetamine. [^7] @@ -119,7 +119,7 @@ Once absorbed into the portal circulation, LDX remains inactive. The conversion The distribution phase describes how the drug disperses from the blood into body tissues (CNS, muscle, fat). -- **Volume of Distribution ($V_d$):** This is a theoretical volume that relates the amount of drug in the body to the concentration in the blood ($C = Amount / V\_d$). +- **Volume of Distribution ($V_d$):** This is a theoretical volume that relates the amount of drug in the body to the concentration in the blood ($C = Amount / V_d$). - **Adults:** Population PK studies (Roberts et al.) estimate the apparent volume of distribution ($V/F$) for d-amphetamine at 377 Liters.[^12][^13] @@ -157,9 +157,9 @@ The user's app screenshot implies a single daily dose, likely the starting dose Parameters: -- **Dose ($D\_{LDX}$):** 30 mg. +- **Dose ($D_{LDX}$):** 30 mg. -- **Active Mass ($D\_{active}$):** $30 \times 0.2968 = 8.90 \text{ mg}$. +- **Active Mass ($D_{active}$):** $30 \times 0.2968 = 8.90 \text{ mg}$. - **Bioavailability ($F$):** 0.96. @@ -169,11 +169,11 @@ Parameters: **Theoretical Maximum (Instantaneous Bolus):** If the drug were injected instantly and distributed instantly: -$$C\_{max(theoretical)} = \frac{D\_{active}}{V\_d} = \frac{8,540,000}{377,000} \approx 22.65 \text{ ng/mL}$$ +**$$C_{max(theoretical)} = \frac{D_{active}}{V_d} = \frac{8,540,000}{377,000} \approx 22.65 \text{ ng/mL}$$** -**Realistic Peak ($C\_{max}$):** In reality, absorption and elimination compete. The peak occurs when absorption rate equals elimination rate. For a drug with $T\_{max} \approx 4h$ and $t\_{1/2} \approx 11h$, the peak concentration is typically 70--80% of the theoretical max. +**Realistic Peak ($C_{max}$):** In reality, absorption and elimination compete. The peak occurs when absorption rate equals elimination rate. For a drug with $T_{max} \approx 4h$ and $t_{1/2} \approx 11h$, the peak concentration is typically 70--80% of the theoretical max. -$$C\_{max} \approx 22.65 \times 0.8 \approx 18.1 \text{ ng/mL}$$ +**$$C_{max} \approx 22.65 \times 0.8 \approx 18.1 \text{ ng/mL}$$** **Result:** The application's prediction of ~19.6 ng/mL (as seen in the screenshot) is mathematically sound for a 30 mg dose in an adult. @@ -181,35 +181,24 @@ $$C\_{max} \approx 22.65 \times 0.8 \approx 18.1 \text{ ng/mL}$$ Why do studies show 80--130 ng/mL? -Case A: Adult High Dose (Ermer et al. 11) [^11] +**Case A: Adult High Dose (Ermer et al. 11)** [^11] - **Dose:** 70 mg. - - **Active Mass:** $20.78 \text{ mg}$. - - **Scaling:** This is $2.33\times$ the 30 mg dose. - - **Single Dose Peak:** $19.6 \text{ ng/mL} \times 2.33 \approx 45.7 \text{ ng/mL}$. - -- **Steady State Accumulation:** With daily dosing ($t\_{1/2}=11h$, $\tau=24h$), the drug accumulates. - +- **Steady State Accumulation:** With daily dosing ($t_{1/2}=11h$, $\tau=24h$), the drug accumulates. - Accumulation Factor ($R$) = $1 / (1 - e^{-k\tau}) \approx 1.28$. - - Steady State Peak = $45.7 \times 1.28 \approx 58.5 \text{ ng/mL}$. + - _Note:_ Some variability exists. If the study population had a slightly lower $V_d$ (e.g., 250 L), concentrations would approach 80 ng/mL. - - _Note:_ Some variability exists. If the study population had a slightly lower $V\_d$ (e.g., 250 L), concentrations would approach 80 ng/mL. - -Case B: Pediatric Dose (Boellner et al. 11) [^11] +**Case B: Pediatric Dose (Boellner et al. 11)** [^11] - **Dose:** 70 mg administered to children (Ages 6-12). - - **Active Mass:** 20.78 mg. - -- **Volume of Distribution:** Children have much smaller bodies. Even if $V\_d$ per kg is similar, a 30 kg child has a total $V\_d$ of roughly $30 \times 5 = 150 \text{ L}$. - +- **Volume of Distribution:** Children have much smaller bodies. Even if $V_d$ per kg is similar, a 30 kg child has a total $V_d$ of roughly $30 \times 5 = 150 \text{ L}$. - **Calculation:** - $$C\_{max} \approx \frac{20.78 \text{ mg} \times 0.96}{150 \text{ L}} \times 0.8 \approx 106 \text{ ng/mL}$$ - +**$$C_{max} \approx \frac{20.78 \text{ mg} \times 0.96}{150 \text{ L}} \times 0.8 \approx 106 \text{ ng/mL}$$** - **Result:** This aligns with the 130 ng/mL often cited in pediatric curves (Image 1 in the user request). **Conclusion:** The discrepancy is not an error. The user is comparing a "Low Dose / Large Body" simulation (App) against "High Dose / Small Body" literature data. @@ -224,7 +213,7 @@ The user provided a specific TypeScript file (`pharmacokinetics.ts`). This secti The code implements the analytical solution for a three-component chain reaction: -$$Dose \xrightarrow{k\_a} \text{Gut/Central LDX} \xrightarrow{k\_{conv}} \text{Active d-Amp} \xrightarrow{k\_{el}} \text{Elimination}$$ +**$$Dose \xrightarrow{k_a} \text{Gut/Central LDX} \xrightarrow{k_{conv}} \text{Active d-Amp} \xrightarrow{k_{el}} \text{Elimination}$$** The formula used for damphConcentration involves three exponential terms (`term1`, `term2`, `term3`) divided by the products of rate constant differences (e.g., `(ka_ldx - ke_damph) * (k_conv - ke_damph)`). @@ -234,24 +223,18 @@ The formula used for damphConcentration involves three exponential terms (`term1 The code retrieves parameters: -- `absorptionRate` ($k\_a$) - -- `conversionHalfLife` (used to calculate $k\_{conv}$) - -- `damphHalfLife` (used to calculate $k\_{el}$) +- `absorptionRate` ($k_a$) +- `conversionHalfLife` (used to calculate $k_{conv}$) +- `damphHalfLife` (used to calculate $k_{el}$) **Critique of Parameters:** -1. **Absorption Rate ($k\_a$):** The app settings show a value of 1.5. - - - _Literature:_ LDX absorption is fast but $T\_{max}$ of the prodrug is ~1h. A $k\_a$ of 1.5 ($t\_{1/2} \approx 0.46h$) is plausible but perhaps slightly aggressive. A value of 0.8--1.0 might better reflect the ~1h Tmax of the prodrug. +1. **Absorption Rate ($k_a$):** The app settings show a value of 1.5. + - _Literature:_ LDX absorption is fast but $T_{max}$ of the prodrug is ~1h. A $k_a$ of 1.5 ($t_{1/2} \approx 0.46h$) is plausible but perhaps slightly aggressive. A value of 0.8--1.0 might better reflect the ~1h Tmax of the prodrug. 2. **Conversion Half-Life:** The app settings show 0.8 h. - - _Literature:_ Correct. Snippet 9 states the half-life of conversion is "roughly 1 hour" or less. 0.8h is a scientifically defensible value. - 3. **Elimination Half-Life:** The app settings show 11.0 h. - - _Literature:_ Correct. Standard adult mean is 10--12 hours. ### 6.3 Missing Components in Code @@ -259,7 +242,7 @@ The code retrieves parameters: The provided snippet calculates concentration for a single dose. - **Steady State Logic:** The snippet does not show how multiple doses are handled. To simulate steady state (the "Regular Plan" mentioned in the query), the app must loop through the last 5--7 days of doses and sum their contributions at the current time $t$. - $$C\_{total}(t) = \sum\_{i} C\_{singledose}(t - t\_{dose\_i})$$ + **$$C_{total}(t) = \sum_{i} C_{singledose}(t - t_{dose_i})$$** If the app is doing this summation elsewhere (in the `Medication Plan Assistant` UI code), it is correct. If it only calculates the current day's dose, it will under-predict morning trough levels by ~20%. * * * * @@ -283,9 +266,7 @@ This text should be placed prominently in the app settings or footer. >**Data Sources:** Simulations utilize the Bateman function for prodrug kinetics, incorporating parameters from: > > - _Ermer et al. (2016):_ Pharmacokinetics of Lisdexamfetamine in Adults. -> > - _Boellner et al. (2010):_ Pharmacokinetics in Pediatric Populations. -> > - _FDA Prescribing Information for Vyvanse®._ ### 7.2 Safety Warnings (Contextual) @@ -301,9 +282,7 @@ If the user inputs high doses (e.g., >70mg) or frequent dosing, the app should t These explanations help the user understand the parameters they can tweak. - **Absorption Rate:** "Controls how quickly the prodrug enters your system. Typically 0.8--1.5 per hour. Food may slightly delay this." - - **Conversion Half-Life:** "The time it takes for red blood cells to convert the inactive prodrug into active dextroamphetamine. Typically 0.8--1.2 hours." - - **Elimination Half-Life:** "The time required for your body to clear half the active drug. Acidic urine (e.g., high Vitamin C) speeds this up (7-9h), while alkaline urine slows it down (13-15h)." * * * * @@ -314,22 +293,21 @@ These explanations help the user understand the parameters they can tweak. Update the `defaults.ts` or constants file with these scientifically validated values to improve baseline accuracy. - ```typescript export const PK_DEFAULTS = { - // Stoichiometry (Fixed) - MW_PRODRUG: 455.60, - MW_ACTIVE: 135.21, - get SALT_FACTOR() { return this.MW_ACTIVE / this.MW_PRODRUG; }, // ~0.2968 - // Bioavailability (Fixed) - F_ORAL: 0.96, - // Population Parameters (Adult Standard) - VOLUME_OF_DISTRIBUTION_L: 377.0, // Roberts et al. (2015) - CLEARANCE_L_H: 28.7, // Derived from Vd and t1/2 - // Rate Constants (1/h) - KA\_DEFAULT: 0.85, // Absorption (Slightly slower than 1.5 for better fit) - KCONV\_DEFAULT: 0.87, // ~0.8h half-life (ln(2)/0.8) - KEL\_DEFAULT: 0.063, // ~11h half-life (ln(2)/11) + // Stoichiometry (Fixed) + MW_PRODRUG: 455.60, + MW_ACTIVE: 135.21, + get SALT_FACTOR() { return this.MW_ACTIVE / this.MW_PRODRUG; }, // ~0.2968 + // Bioavailability (Fixed) + F_ORAL: 0.96, + // Population Parameters (Adult Standard) + VOLUME_OF_DISTRIBUTION_L: 377.0, // Roberts et al. (2015) + CLEARANCE_L_H: 28.7, // Derived from Vd and t1/2 + // Rate Constants (1/h) + KA_DEFAULT: 0.85, // Absorption (Slightly slower than 1.5 for better fit) + KCONV_DEFAULT: 0.87, // ~0.8h half-life (ln(2)/0.8) + KEL_DEFAULT: 0.063, // ~11h half-life (ln(2)/11) }; ``` @@ -337,12 +315,9 @@ export const PK_DEFAULTS = { To bridge the gap between the 20 ng/mL calculation and the user's expectation of "high" literature values, introduce a "Physiology Mode" setting: -1. **Standard Mode (Default):** Uses fixed Adult parameters ($V\_d = 377$ L). Best for safety and general estimation. - -2. **Weight-Based Mode (Advanced):** Calculates $V\_d$ based on user weight. - - - Formula: $V\_d = \text{UserWeight (kg)} \times 5.4$. - +1. **Standard Mode (Default):** Uses fixed Adult parameters ($V_d = 377$ L). Best for safety and general estimation. +2. **Weight-Based Mode (Advanced):** Calculates $V_d$ based on user weight. + - Formula: $V_d = \text{UserWeight (kg)} \times 5.4$. - _Result:_ A 50 kg user will see much higher peaks than a 90 kg user, reflecting biological reality. ### 8.3 Handling "Steady State" Visualization @@ -350,15 +325,13 @@ To bridge the gap between the 20 ng/mL calculation and the user's expectation of Ensure the simulation loop looks back at least 5 days (5 half-lives $\approx$ 55 hours, so 3 days is minimum, 5 is better). - Initialize `totalConcentration = 0`. - - Iterate through `doses` from `Now - 120 hours` to `Now`. - - Add result of `calculateSingleDoseConcentration` to total. This will lift the curve slightly, adding the ~20-30% "trough" level that long-term users experience. ## 9\. Conclusion -The investigation confirms that the application's core mathematics---specifically the chain-reaction pharmacokinetic model---are sound. The "discrepancy" in plasma concentration is a correct representation of a 30 mg dose in an average adult, contrasting with literature often citing pediatric or high-dose data. By strictly enforcing the stoichiometric conversion factor ($0.297$), utilizing the adult volume of distribution ($377$ L), and incorporating the regulatory text provided, the application will meet professional standards for accuracy and safety. +The investigation confirms that the application's core mathematics—specifically the chain-reaction pharmacokinetic model—are sound. The "discrepancy" in plasma concentration is a correct representation of a 30 mg dose in an average adult, contrasting with literature often citing pediatric or high-dose data. By strictly enforcing the stoichiometric conversion factor ($0.297$), utilizing the adult volume of distribution ($377$ L), and incorporating the regulatory text provided, the application will meet professional standards for accuracy and safety. The developer is advised to maintain the current logic but enhance the user interface to explain why the values appear as they do, using the tooltips and disclaimers drafted in Section 7. diff --git a/docs/2026-01-08_AI-Research_ImprovingLisdexamfetaminePharmacokineticsApp.pdf b/docs/2026-01-08_AI-Research_ImprovingLisdexamfetaminePharmacokineticsApp.pdf new file mode 100644 index 0000000..85b097d Binary files /dev/null and b/docs/2026-01-08_AI-Research_ImprovingLisdexamfetaminePharmacokineticsApp.pdf differ diff --git a/docs/2026-01-09_AI-Research_AppPharmacokineticsImprovementPlan.md b/docs/2026-01-09_AI-Research_AppPharmacokineticsImprovementPlan.md index ba19611..2416ac9 100644 --- a/docs/2026-01-09_AI-Research_AppPharmacokineticsImprovementPlan.md +++ b/docs/2026-01-09_AI-Research_AppPharmacokineticsImprovementPlan.md @@ -4,35 +4,32 @@ The pharmacological management of Attention Deficit Hyperactivity Disorder (ADHD) in adults has evolved significantly with the introduction of prodrug formulations designed to stabilize plasma concentrations and reduce abuse potential. This report provides an exhaustive analysis of the therapeutic plasma concentration ranges, pharmacokinetic (PK) profiles, and simulation parameters for dextroamphetamine, with a specific focus on Lisdexamfetamine (LDX). -Current clinical consensus and pharmacokinetic data indicate that the therapeutic reference range for plasma dextroamphetamine in adults is broadly defined as **20 ng/mL to 100 ng/mL**. Within this range, optimal symptom control typically correlates with peak plasma concentrations ($C\_{max}$) of **30 ng/mL to 80 ng/mL** for standard adult dosing regimens (30–70 mg Lisdexamfetamine). It is critical to note that children often exhibit higher $C\_{max}$ values (up to 130 ng/mL) due to lower body mass, a distinction that resolves a key discrepancy identified in the user's preliminary analysis. +Current clinical consensus and pharmacokinetic data indicate that the therapeutic reference range for plasma dextroamphetamine in adults is broadly defined as **20 ng/mL to 100 ng/mL**. Within this range, optimal symptom control typically correlates with peak plasma concentrations ($C_{max}$) of **30 ng/mL to 80 ng/mL** for standard adult dosing regimens (30–70 mg Lisdexamfetamine). It is critical to note that children often exhibit higher $C_{max}$ values (up to 130 ng/mL) due to lower body mass, a distinction that resolves a key discrepancy identified in the user's preliminary analysis. -For the purpose of computational modeling and application development, the pharmacokinetic behavior of Lisdexamfetamine is defined by a rate-limited hydrolysis step in red blood cells, converting the inactive prodrug to active $d$-amphetamine. The discrepancy observed in the user's application–-showing a peak of ~19.6 ng/mL versus literature values of ~70–80 ng/mL for a 70 mg dose–-suggests a potential underestimation of the molar conversion efficiency or an overestimation of the volume of distribution ($V\_d$) in the current algorithm. This report provides the precise pharmacokinetic constants, including absorption rates ($k\_a$), elimination rates ($k\_{el}$), and volume of distribution parameters ($V\_d/F \approx 3.7 - 4.0$ L/kg), required to calibrate the simulation to match observed clinical data. +For the purpose of computational modeling and application development, the pharmacokinetic behavior of Lisdexamfetamine is defined by a rate-limited hydrolysis step in red blood cells, converting the inactive prodrug to active $d$-amphetamine. The discrepancy observed in the user's application–-showing a peak of ~19.6 ng/mL versus literature values of ~70–80 ng/mL for a 70 mg dose–-suggests a potential underestimation of the molar conversion efficiency or an overestimation of the volume of distribution ($V_d$) in the current algorithm. This report provides the precise pharmacokinetic constants, including absorption rates ($k_a$), elimination rates ($k_{el}$), and volume of distribution parameters ($V_d/F \approx 3.7 - 4.0$ L/kg), required to calibrate the simulation to match observed clinical data. * * * * ## 1\. Introduction and Clinical Context -The treatment of adult ADHD relies on the modulation of catecholaminergic neurotransmission in the prefrontal cortex and striatum. Dextroamphetamine ($d$-amphetamine) serves as a foundational agent in this therapeutic class, functioning as a potent releaser of dopamine (DA) and norepinephrine (NE). While immediate-release (IR) formulations have been used for decades, their pharmacokinetic profile–-characterized by rapid absorption, sharp peaks, and relatively rapid decline–-often results in pulsatile stimulation. This "sawtooth" profile can lead to inter-dose rebound symptoms and increased abuse liability. +The treatment of adult ADHD relies on the modulation of catecholaminergic neurotransmission in the prefrontal cortex and striatum. Dextroamphetamine ($d$-amphetamine) serves as a foundational agent in this therapeutic class, functioning as a potent releaser of dopamine (DA) and norepinephrine (NE). While immediate-release (IR) formulations have been used for decades, their pharmacokinetic profile–-characterized by rapid absorption, sharp peaks, and relatively rapid decline–-often results in pulsatile stimulation. This "sawtooth" profile can lead to inter-dose rebound symptoms and increased abuse liability. -Lisdexamfetamine dimesylate (LDX), marketed as Vyvanse or Elvanse, represents a significant pharmacological advancement. As a prodrug, it is pharmacologically inactive until hydrolyzed in the blood. This mechanism provides a built-in rate-limiting step that smooths the plasma concentration-time curve, extending the duration of action to 13–14 hours in adults and reducing the euphoria associated with rapid rises in plasma drug levels. +Lisdexamfetamine dimesylate (LDX), marketed as Vyvanse or Elvanse, represents a significant pharmacological advancement. As a prodrug, it is pharmacologically inactive until hydrolyzed in the blood. This mechanism provides a built-in rate-limiting step that smooths the plasma concentration-time curve, extending the duration of action to 13–14 hours in adults and reducing the euphoria associated with rapid rises in plasma drug levels. ### 1.1 The Role of Therapeutic Drug Monitoring (TDM) Therapeutic Drug Monitoring (TDM) for amphetamines is not standard practice for dose titration, which is typically guided by clinical response. However, TDM becomes essential in specific clinical scenarios: 1. **Assessing Compliance:** Verifying that the medication is being taken as prescribed. - 2. **Identifying Metabolic Variability:** Detecting ultrarapid or poor metabolizers. - 3. **Toxicology:** Differentiating therapeutic use from abuse or overdose. - 4. **Medico-Legal Contexts:** Evaluating impairment or fitness for duty (e.g., driving). Understanding the "therapeutic range" requires a nuanced view that distinguishes between the concentrations required for efficacy (which vary by individual tolerance) and those that signal toxicity. ### 1.2 Discrepancies in Literature and Modeling -A common challenge in interpreting pharmacokinetic literature is the variation in reported units, population demographics (children vs. adults), and study conditions (fasted vs. fed). For developers creating simulation tools, these variables can lead to significant calibration errors. A curve derived from a pediatric study (where a 70 mg dose might yield a $C\_{max}$ of 130 ng/mL) cannot be directly applied to an adult model (where the same dose yields ~80 ng/mL) without correcting for volume of distribution ($V\_d$) and clearance ($CL$) scaling. This report addresses these variables to support precise modeling. +A common challenge in interpreting pharmacokinetic literature is the variation in reported units, population demographics (children vs. adults), and study conditions (fasted vs. fed). For developers creating simulation tools, these variables can lead to significant calibration errors. A curve derived from a pediatric study (where a 70 mg dose might yield a $C_{max}$ of 130 ng/mL) cannot be directly applied to an adult model (where the same dose yields ~80 ng/mL) without correcting for volume of distribution ($V_d$) and clearance ($CL$) scaling. This report addresses these variables to support precise modeling. * * * * @@ -47,21 +44,15 @@ The primary source of confusion in dosage calculations often stems from failing #### Dextroamphetamine (Active Moiety) - **Chemical Name:** (2S)-1-phenylpropan-2-amine - -- **Molecular Formula:** $C\_9H\_{13}N$ - -- **Molar Mass (Free Base):** 135.21 g/mol [^1] - +- **Molecular Formula:** $C_9H_{13}N$ +- **Molar Mass (Free Base):** 135.21 g/mol [^1][^2] - Characteristics: It is the dextrorotatory ($d-$) enantiomer of amphetamine. It is approximately 3 to 4 times more potent in CNS stimulation than the levo ($l-$) enantiomer found in racemic mixtures like Adderall. #### Lisdexamfetamine Dimesylate (Prodrug) - **Chemical Structure:** Dextroamphetamine covalently bonded to L-lysine via an amide linkage. - -- **Molecular Formula:** $C\_{15}H\_{25}N\_3O \cdot (CH\_4O\_3S)\_2$ - -- **Molar Mass (Dimesylate Salt):** 455.60 g/mol [^3] - +- **Molecular Formula:** $C_{15}H_{25}N_3O \cdot (CH_4O_3S)_2$ +- **Molar Mass (Dimesylate Salt):** 455.60 g/mol [^3][^4] - **Molar Mass (Free Base - Lisdexamfetamine):** ~263.38 g/mol [^5] ### 2.2 The Conversion Factor @@ -70,20 +61,14 @@ For a simulation app, the "Conversion Factor" is the most critical constant. It The stoichiometric conversion is calculated based on the ratio of the molecular weight of the $d$-amphetamine base to the molecular weight of the Lisdexamfetamine dimesylate salt. -$$ -\text{Conversion Ratio} = \frac{\text{MW}\_{d\text{-amp base}}}{ \text{MW}\_{ \text{LDX dimesylate}}} = \frac{135.21}{455.60} \approx 0.2968 -$$ +**$$\text{Conversion Ratio} = \frac{\text{MW}_{d\text{-amp base}}}{ \text{MW}_{ \text{LDX dimesylate}}} = \frac{135.21}{455.60} \approx 0.2968$$** However, literature often cites a conversion factor of roughly 0.295 or 0.30. - **Clinical Calculation:** 1 mg of Lisdexamfetamine dimesylate $ \approx$ 0.2948 mg of $d$-amphetamine base.[^6] - - **Application:** - - **30 mg LDX capsule:** $30 \times 0.2948 = 8.84$ mg of $d$-amphetamine base. - - **50 mg LDX capsule:** $50 \times 0.2948 = 14.74$ mg of $d$-amphetamine base. - - **70 mg LDX capsule:** $70 \times 0.2948 = 20.64$ mg of $d$-amphetamine base. **Implication for Modeling:** If the simulation code assumes a 1:1 conversion or utilizes the salt weight of dextroamphetamine (sulfate) rather than the base weight, the resulting plasma concentrations will be erroneous. The simulation must "inject" the calculated mass of the base into the virtual compartment. @@ -99,38 +84,26 @@ Lisdexamfetamine's pharmacokinetics are unique among ADHD medications due to its Upon oral administration, LDX is rapidly absorbed from the gastrointestinal tract via the peptide transporter 1 (PEPT1) system. It enters the systemic circulation primarily as the intact prodrug. - **Intact LDX Kinetics:** - - - $T\_{max}$: ~1 hour.[^7] - - - **Half-life:** < 1 hour (typically 0.4–0.6 hours).[^9] - + - $T_{max}$: ~1 hour.[^7][^8] + - **Half-life:** < 1 hour (typically 0.4–0.6 hours).[^9][^10] - **Concentration:** Intact LDX levels in plasma are low and transient. It does not bind to DA/NE transporters and has no therapeutic effect itself. - - **Hydrolysis (The Rate-Limiting Step):** The conversion to active $d$-amphetamine occurs in the blood, specifically via aminopeptidase enzymes in red blood cells (RBCs).[^11] This metabolism is not dependent on hepatic CYP450 enzymes, which confers a significant advantage: low inter-patient variability and minimal drug-drug interactions compared to hepatically metabolized stimulants. - - **Efficiency:** The conversion is highly efficient, with >96% bioavailability. - - **Capacity:** While theoretically saturable, clinical studies show linear pharmacokinetics up to doses of 250 mg, indicating that the RBC hydrolytic capacity is not a limiting factor at therapeutic or even supra-therapeutic doses.[^12] ### 3.2 Pharmacokinetics of the Active Metabolite ($d$\-Amphetamine) Once hydrolyzed, the released $d$-amphetamine follows its own pharmacokinetic trajectory. -- $T\_{max}$ (Time to Peak): - - - **Adults:** 3.5 to 4.5 hours post-dose.[^7] - +- $T_{max}$ (Time to Peak): + - **Adults:** 3.5 to 4.5 hours post-dose.[^7][^8][^13] - **Children:** ~3.5 hours. + - **Effect of Food:** A high-fat meal delays $T_{max}$ by approximately 1 hour (from ~3.8h to ~4.7h) but does not significantly alter the total extent of absorption ($AUC$) or peak concentration ($C_{max}$).[^7][^8] This is a crucial "flag" for the app: the simulation should arguably allow a user to toggle "Taken with Food" to shift the curve slightly rightward. - - **Effect of Food:** A high-fat meal delays $T\_{max}$ by approximately 1 hour (from ~3.8h to ~4.7h) but does not significantly alter the total extent of absorption ($AUC$) or peak concentration ($C\_{max}$).[^7] This is a crucial "flag" for the app: the simulation should arguably allow a user to toggle "Taken with Food" to shift the curve slightly rightward. - -- **Half-Life ($t\_{1/2}$):** - - - **Average:** 10–12 hours in adults.[^9] - +- **Half-Life ($t_{1/2}$):** + - **Average:** 10–12 hours in adults.[^9][^10][^14] - **Variability:** This is highly dependent on urinary pH (discussed in Section 8). - - **Linearity:** The pharmacokinetics are dose-proportional. Doubling the dose of LDX from 30 mg to 60 mg results in an approximate doubling of the plasma $d$-amphetamine concentration. * * * * @@ -143,53 +116,45 @@ The "therapeutic range" is a statistical construct derived from population studi Based on the synthesis of TDM guidelines (AGNP Task Force) and clinical data, the consensus therapeutic range for plasma $d$-amphetamine in adults is: -20 ng/mL – 100 ng/mL +20 ng/mL – 100 ng/mL - **Sub-therapeutic (< 20 ng/mL):** Concentrations below this level are generally insufficient to manage moderate-to-severe ADHD symptoms in adults.[^15] - -- **Optimal Efficacy (30 – 80 ng/mL):** Most adults achieving remission of symptoms on standard doses (30–70 mg LDX) exhibit peaks within this band.[^7][^15] - +- **Optimal Efficacy (30 – 80 ng/mL):** Most adults achieving remission of symptoms on standard doses (30–70 mg LDX) exhibit peaks within this band.[^7][^15] - **Supra-therapeutic / Alert (> 100 ng/mL):** While not necessarily toxic in tolerant individuals, levels consistently above 100 ng/mL warrant review to rule out abuse or metabolic issues. -### 4.2 Comparative $C\_{max}$ Data: Solving the User's Discrepancy +### 4.2 Comparative $C_{max}$ Data: Solving the User's Discrepancy The user noted a discrepancy between their app (19.6 ng/mL) and study charts (showing ~130 ng/mL or ~80 ng/mL). This variance is explained by the population studied. #### Pediatric Data (Higher Peaks) -Studies in children (aged 6–12) show significantly higher peak concentrations for the same dose due to smaller volume of distribution ($V\_d$). - -- **30 mg LDX:** Mean $C\_{max} \approx \textbf{53.2 ng/mL}$.[^7][^10] - -- **50 mg LDX:** Mean $C\_{max} \approx \textbf{93.3 ng/mL}$.[^10] - -- **70 mg LDX:** Mean $C\_{max} \approx \textbf{134.0 ng/mL}$.[^10] +Studies in children (aged 6–12) show significantly higher peak concentrations for the same dose due to smaller volume of distribution ($V_d$). +- **30 mg LDX:** Mean $C_{max} \approx \textbf{53.2 ng/mL}$.[^7][^10] +- **50 mg LDX:** Mean $C_{max} \approx \textbf{93.3 ng/mL}$.[^10] +- **70 mg LDX:** Mean $C_{max} \approx \textbf{134.0 ng/mL}$.[^10] - _Observation:_ The user's referenced chart showing peaks >100 ng/mL likely comes from a pediatric study (e.g., Boellner et al. [^7]). #### Adult Data (Lower Peaks) Studies in healthy adults show lower concentrations for equivalent doses. -- **30 mg LDX:** Estimated $C\_{max} \approx \textbf{30 – 40 ng/mL}$ (extrapolated from linear kinetics). - -- **50 mg LDX:** Mean $C\_{max} \approx \textbf{44.6 ng/mL}$.[^7] - -- **70 mg LDX:** Mean $C\_{max} \approx \textbf{69 – 80.3 ng/mL}$.[^7] - -- _Conclusion:_ For an adult simulation, a 70 mg dose should peak around 70–80 ng/mL, not 130 ng/mL. The user's current calculation of 19.6 ng/mL (presumably for a 30mg or similar dose) is likely too low even for an adult, suggesting the simulation volume or absorption constant needs adjustment. +- **30 mg LDX:** Estimated $C_{max} \approx \textbf{30 -- 40 ng/mL}$ (extrapolated from linear kinetics). +- **50 mg LDX:** Mean $C_{max} \approx \textbf{44.6 ng/mL}$.[^7] +- **70 mg LDX:** Mean $C_{max} \approx \textbf{69 -- 80.3 ng/mL}$.[^7][^16][^17] +- _Conclusion:_ For an adult simulation, a 70 mg dose should peak around 70–80 ng/mL, not 130 ng/mL. The user's current calculation of 19.6 ng/mL (presumably for a 30mg or similar dose) is likely too low even for an adult, suggesting the simulation volume or absorption constant needs adjustment. ### 4.3 Table: Reference Pharmacokinetic Values for Adults vs. Children -| Formulation | Dose
(mg) | Population | Mean $C_{max}$$
(ng/mL) | $T_{max}$
(hours) | $AUC_{0-\infty}$
(ng-h/mL) | Reference | -|:---------------------|:--------------|:-------------|:----------------------------|:----------------------|:-------------------------------|:----------| -| Lisdexamfetamine | 30 | Child (6-12) | 53.2 ± 9.6 | 3.4 | 844 | 7 | -| Lisdexamfetamine | 50 | Child (6-12) | 93.3 ± 18.2 | 3.6 | 1510 | 7 | -| Lisdexamfetamine | 70 | Child (6-12) | 134.0 ± 26.1 | 3.5 | 2157 | 7 | -| Lisdexamfetamine | 50 | Adult | 44.6 ± 9.3 | 4.0 | 763 | 7 | -| Lisdexamfetamine | 70 | Adult | 80.3 ± 11.8 | 3.8 | 1342 | 7 | -| $d$-Amphetamine (IR) | 10 | Adult | 33.2 | 3.0 | ~500 | 16 | -| Adderall XR | 20 | Adult | ~35 - 40 | 7.0 | \- | 18 | +| Formulation
  | Dose
(mg) | Population
  | Mean $C_{max}$$
(ng/mL) | $T_{max}$
(hours) | $AUC_{0-\infty}$
(ng-h/mL) | Reference
  | +|:-----------------------|:--------------|:----------------------|:----------------------------|:----------------------|:-------------------------------|:---------------------| +| Lisdexamfetamine | 30 | Child (6-12) | 53.2 ± 9.6 | 3.4 | 844 | [^7] | +| Lisdexamfetamine | 50 | Child (6-12) | 93.3 ± 18.2 | 3.6 | 1510 | [^7] | +| Lisdexamfetamine | 70 | Child (6-12) | 134.0 ± 26.1 | 3.5 | 2157 | [^7] | +| Lisdexamfetamine | 50 | Adult | 44.6 ± 9.3 | 4.0 | 763 | [^7] | +| Lisdexamfetamine | 70 | Adult | 80.3 ± 11.8 | 3.8 | 1342 | [^7] | +| $d$-Amphetamine (IR) | 10 | Adult | 33.2 | 3.0 | ~500 | [^16] | +| Adderall XR | 20 | Adult | ~35 - 40 | 7.0 | - | [^18] | [^4][^10][^7][^16] @@ -197,7 +162,7 @@ Studies in healthy adults show lower concentrations for equivalent doses. ## 5\. Computational Modeling and Simulation Parameters -To rectify the discrepancy in the "Medication Plan Assistant," the simulation model must be calibrated with appropriate pharmacokinetic constants. The current underestimation (19.6 ng/mL) likely stems from an incorrect Volume of Distribution ($V\_d$) or Conversion Factor in the code. +To rectify the discrepancy in the "Medication Plan Assistant," the simulation model must be calibrated with appropriate pharmacokinetic constants. The current underestimation (19.6 ng/mL) likely stems from an incorrect Volume of Distribution ($V_d$) or Conversion Factor in the code. ### 5.1 The Mathematical Model @@ -205,19 +170,15 @@ The pharmacokinetics of LDX $ \rightarrow$ $d$-amp are best described by a one-c The concentration $C(t)$ at time $t$ can be approximated by the Bateman function, but adapted for the prodrug conversion rates. -$$C(t) = \frac{F \cdot D \cdot k\_a}{V\_d (k\_a - k\_{el})} \times (e^{-k\_{el} \cdot t} - e^{-k\_a \cdot t})$$ +**$$C(t) = \frac{F \cdot D \cdot k_a}{V_d (k_a - k_{el})} \times (e^{-k_{el} \cdot t} - e^{-k_a \cdot t})$$** Where: - **$F$:** Bioavailability fraction (approx 0.96 for LDX conversion). - - **$D$:** Dose of the active moiety (mg of $d$-amp base, NOT mg of LDX). - -- **$k\_a$:** Absorption/Formation rate constant. - -- **$k\_{el}$:** Elimination rate constant. - -- **$V\_d$:** Volume of distribution. +- **$k_a$:** Absorption/Formation rate constant. +- **$k_{el}$:** Elimination rate constant. +- **$V_d$:** Volume of distribution. ### 5.2 Recommended Constants for Adult Simulation @@ -228,48 +189,37 @@ Based on the deep research, the following parameters are recommended to calibrat The code must convert the LDX salt weight to $d$-amp base weight before simulation. - Constant: `LDX_TO_DAMPH_CONVERSION = 0.2948` - - Logic: `activeDose = userDoseLDX * LDX_TO_DAMPH_CONVERSION` -#### Parameter 2: Volume of Distribution ($V\_d$) +#### Parameter 2: Volume of Distribution ($V_d$) -This is the most likely source of the user's error. If $V\_d$ is set too high, concentration drops. +This is the most likely source of the user's error. If $V_d$ is set too high, concentration drops. - **Literature Value:** ~3.5 to 4.5 L/kg. - - **Target Value (70 kg Adult):** $3.7 \times 70 \approx \textbf{260 Liters}$. - -- **Code Adjustment:** Ensure the code uses activeDose / Vd. If the app uses a fixed $V\_d$, set it to 250–270 L. - - - _Check:_ If we use 20.6 mg base (from 70mg LDX) into 260 L: - $$20.6 \text{ mg} / 260 \text{ L} = 0.079 \text{ mg/L} = \mathbf{79 \text{ ng/mL}}$$ - This perfectly matches the literature value of 80.3 ng/mL.[^16] - -- _Diagnosis:_ The user's app showing 19.6 ng/mL suggests their $V\_d$ might be set to ~1000 L, or they are simulating the distribution of the prodrug (MW 455) rather than the base. +- **Code Adjustment:** Ensure the code uses activeDose / Vd. If the app uses a fixed $V_d$, set it to 250–270 L. + - _Check:_ If we use 20.6 mg base (from 70mg LDX) into 260 L: + - $20.6 \text{ mg} / 260 \text{ L} = 0.079 \text{ mg/L} = \mathbf{79 \text{ ng/mL}}$$ + - This perfectly matches the literature value of 80.3 ng/mL.[^16] +- _Diagnosis:_ The user's app showing 19.6 ng/mL suggests their $V_d$ might be set to ~1000 L, or they are simulating the distribution of the prodrug (MW 455) rather than the base. #### Parameter 3: Rate Constants -- **Elimination Rate ($k\_{el}$):** Derived from half-life ($t\_{1/2}$). - - - $t\_{1/2} \approx 11$ hours (Adult average). - - - $$k\_{el} = \frac{ \ln(2)}{11} \approx \textbf{0.063 h}^{-1}$$ - -- **Absorption Rate ($k\_a$):** For LDX, this represents the hydrolysis rate/appearance rate of $d$-amp. - - - $T\_{max} \approx 3.8$ hours. - - - To achieve a $T\_{max}$ of 3.8h with a $k\_{el}$ of 0.063, the $k\_a$ should be approximately **0.3 – 0.4 h⁻¹**. (Note: This is slower than IR amphetamine, reflecting the prodrug release). +- **Elimination Rate ($k_{el}$):** Derived from half-life ($t_{1/2}$). + - $t_{1/2} \approx 11$ hours (Adult average). + **$$k_{el} = \frac{ \ln(2)}{11} \approx \textbf{0.063 h}^{-1}$$** +- **Absorption Rate ($k_a$):** For LDX, this represents the hydrolysis rate/appearance rate of $d$-amp. + - $T_{max} \approx 3.8$ hours. + - To achieve a $T_{max}$ of 3.8h with a $k_{el}$ of 0.063, the $k_a$ should be approximately **0.3 – 0.4 h⁻¹**. (Note: This is slower than IR amphetamine, reflecting the prodrug release). ### 5.3 Code Snippet Correction Strategy -The user's code snippet uses: `const ka\_ldx = Math.log(2) / absorptionRate;` `const k\_conv = Math.log(2) / conversionHalfLife;` +The user's code snippet uses: `const ka_ldx = Math.log(2) / absorptionRate;` `const k_conv = Math.log(2) / conversionHalfLife;` To fix the simulation: 1. **Verify Dose:** Ensure `numDose` is multiplied by `0.2948` inside the calculation or passed as base equivalents. - -2. **Calibrate $V\_d$:** The current snippet does not explicitly show the volume division (it might be hidden in the `concentration` formula or assumed to be 1). The formula `(numDose * ka_ldx / (ka_ldx - k_conv))` calculates mass in the compartment. To get ng/mL, the result must be divided by $V\_d$ (in Liters, then multiplied by 1000 for ng/mL adjustment if dose is mg). +2. **Calibrate $V_d$:** The current snippet does not explicitly show the volume division (it might be hidden in the `concentration` formula or assumed to be 1). The formula `(numDose * ka_ldx / (ka_ldx - k_conv))` calculates mass in the compartment. To get ng/mL, the result must be divided by $V_d$ (in Liters, then multiplied by 1000 for ng/mL adjustment if dose is mg). - _Correction:_ `Concentration_ng_mL = (Calculated_Mass_mg / Vd_Liters) * 1000` @@ -284,26 +234,19 @@ The "standard" adult curve is an idealization. The report must inform the develo Dextroamphetamine is a weak base. Its reabsorption in the kidneys is pH-dependent. - **Acidic Urine (pH < 6.0):** Ionization increases. Reabsorption decreases. - - - _Result:_ $t\_{1/2}$ drops to ~7 hours. Plasma levels fall faster. - + - _Result:_ $t_{1/2}$ drops to ~7 hours. Plasma levels fall faster. - _Clinical Cause:_ High Vitamin C intake, fruit juices, protein-rich diet. - - **Alkaline Urine (pH > 7.5):** Ionization decreases. Reabsorption increases. - - - _Result:_ $t\_{1/2}$ extends to 18–30 hours. Plasma levels accumulate. - + - _Result:_ $t_{1/2}$ extends to 18–30 hours. Plasma levels accumulate. - _Clinical Cause:_ Antacids (calcium carbonate), sodium bicarbonate, urinary alkalinizers, vegetable-heavy diet. - -- _Simulation Note:_ A sophisticated app might include a "Urine pH" slider that adjusts $k\_{el}$. +- _Simulation Note:_ A sophisticated app might include a "Urine pH" slider that adjusts $k_{el}$. ### 6.2 Body Weight Clearance is correlated with weight. -- **Pediatric vs. Adult:** Children clear the drug faster per kg, but because they have a much smaller absolute volume ($V\_d$), they achieve higher peak concentrations for the same fixed dose. - -- _Simulation Note:_ The app should ideally ask for user weight to scale $V\_d$ ($V\_d = 3.8 \times \text{Weight}\_{kg}$). +- **Pediatric vs. Adult:** Children clear the drug faster per kg, but because they have a much smaller absolute volume ($V_d$), they achieve higher peak concentrations for the same fixed dose. +- _Simulation Note:_ The app should ideally ask for user weight to scale $V_d$ ($V_d = 3.8 \times \text{Weight}_{kg}$). ### 6.3 Genetic Polymorphisms (CYP2D6) @@ -317,12 +260,9 @@ Defining the upper limit of the therapeutic range involves distinguishing betwee ### 7.1 Toxicological Thresholds -- **Therapeutic Ceiling:** 100 – 150 ng/mL. Levels above this are rarely necessary and typically indicate either abuse or a metabolic anomaly (e.g., severe renal impairment). - +- **Therapeutic Ceiling:** 100 – 150 ng/mL. Levels above this are rarely necessary and typically indicate either abuse or a metabolic anomaly (e.g., severe renal impairment). - **Toxic Alert:** \> 200 ng/mL. At this level, a non-tolerant individual would likely experience severe anxiety, tachycardia (>120 bpm), and hypertension.[^20][^21] - -- **Severe Toxicity:** \> 500 – 1000 ng/mL. Associated with rhabdomyolysis, hyperthermia, and psychosis. - +- **Severe Toxicity:** \> 500 – 1000 ng/mL. Associated with rhabdomyolysis, hyperthermia, and psychosis. - **Extreme Tolerance:** Case reports exist of chronic abusers surviving levels >1,000 ng/mL due to receptor downregulation, but these are outliers and should not inform therapeutic limits.[^20] ### 7.2 Symptoms of Excess (Serotonin/Dopamine Toxicity) @@ -330,7 +270,6 @@ Defining the upper limit of the therapeutic range involves distinguishing betwee The user's app might include a "Warning" zone. This should trigger if simulated levels exceed a set threshold (e.g., 120 ng/mL). - **Physical:** Palpitations, tremors, sweating, dry mouth, pupil dilation (mydriasis). - - **Psychiatric:** Agitation, rapid speech (logorrhea), paranoia, insomnia. * * * * @@ -341,21 +280,17 @@ When verifying the app's predictions against real-world lab results, the type of ### 8.1 Plasma vs. Serum vs. Whole Blood -Most reference ranges (20–100 ng/mL) apply to plasma or serum. Whole blood concentrations may differ. The app should specify it simulates "Plasma Concentration." +Most reference ranges (20–100 ng/mL) apply to plasma or serum. Whole blood concentrations may differ. The app should specify it simulates "Plasma Concentration." ### 8.2 Chiral Separation Standard immunoassays detect "Amphetamines" generally. They cannot distinguish: -- $d$-amphetamine (Vyvanse/Dexedrine) - -- $l$-amphetamine - -- Racemic mixtures (Adderall, street speed) - -- Methamphetamine metabolites - -- Pseudoephedrine cross-reactivity +- **$d$-amphetamine** _(Vyvanse/Dexedrine)_ +- **$l$-amphetamine** +- **Racemic mixtures** _(Adderall, street speed)_ +- **Methamphetamine metabolites** +- **Pseudoephedrine cross-reactivity** To validate the model or clinical status, a **Quantitative LC-MS/MS with Chiral Differentiation** is required. This confirms the presence of pure $d$-amphetamine. If significant $l$-amphetamine is found in a patient prescribed Vyvanse, it indicates intake of Adderall or illicit amphetamine.[^22] @@ -366,11 +301,8 @@ To validate the model or clinical status, a **Quantitative LC-MS/MS with Chiral For the development of the "Medication Plan Assistant," the following conclusions are definitive: 1. **Therapeutic Target:** The simulation should visualize a therapeutic window of **20 ng/mL to 100 ng/mL** for adults. - -2. **Calibration Point:** A 70 mg Lisdexamfetamine dose in a standard 70 kg adult should peak ($C\_{max}$) at approximately **80 ng/mL** at **3.5–4.0 hours** ($T\_{max}$). - -3. **Correction of Discrepancy:** The user's current low value (19.6 ng/mL) is likely due to using the salt mass (LDX) instead of the base mass ($d$-amp) or an excessively large volume of distribution. Calibrating $V\_d$ to **~260 L** and using a **0.2948** conversion factor will align the model with clinical reality. - +2. **Calibration Point:** A 70 mg Lisdexamfetamine dose in a standard 70 kg adult should peak ($C_{max}$) at approximately **80 ng/mL** at **3.5–4.0 hours** ($T_{max}$). +3. **Correction of Discrepancy:** The user's current low value (19.6 ng/mL) is likely due to using the salt mass (LDX) instead of the base mass ($d$-amp) or an excessively large volume of distribution. Calibrating $V_d$ to **~260 L** and using a **0.2948** conversion factor will align the model with clinical reality. 4. **Safety Bounds:** The app should visually flag concentrations exceeding **150 ng/mL** as potentially supra-therapeutic and **200 ng/mL** as the toxic alert threshold. By integrating these specific pharmacokinetic constants and physiological variables, the application can provide a clinically accurate simulation that respects the profound differences between pediatric and adult metabolisms and the unique prodrug mechanics of lisdexamfetamine. @@ -379,14 +311,14 @@ By integrating these specific pharmacokinetic constants and physiological variab ## Appendix: Simulation Constants Summary Table -| Parameter | Value | Unit | Notes | -|:--------------------------------|:-----------|:------------------|:------------------------------------| -| Conversion Factor | 0.2948 | mg base / mg salt | Multiply LDX dose by this first. | -| Volume of Distribution ($V\_d$) | 3.7 - 4.0 | L/kg | Default to ~260 L for 70kg Adult. | -| Bioavailability ($F$) | 0.96 | Fraction | Efficiency of hydrolysis. | -| Absorption Rate ($k\_a$) | 0.3 - 0.4 | $h^{-1}$ | Rate of hydrolysis/appearance. | -| Elimination Rate ($k\_{el}$) | 0.063 | $h^{-1}$ | Based on 11h half-life. | -| Lag Time ($t\_{lag}$) | ~0.5 - 1.0 | hours | Time before hydrolysis accelerates. | +| Parameter | Value | Unit | Notes | +|:-------------------------------|:-----------|:------------------|:------------------------------------| +| Conversion Factor | 0.2948 | mg base / mg salt | Multiply LDX dose by this first. | +| Volume of Distribution ($V_d$) | 3.7 - 4.0 | L/kg | Default to ~260 L for 70kg Adult. | +| Bioavailability ($F$) | 0.96 | Fraction | Efficiency of hydrolysis. | +| Absorption Rate ($k_a$) | 0.3 - 0.4 | $h^{-1}$ | Rate of hydrolysis/appearance. | +| Elimination Rate ($k_{el}$) | 0.063 | $h^{-1}$ | Based on 11h half-life. | +| Lag Time ($t_{lag}$) | ~0.5 - 1.0 | hours | Time before hydrolysis accelerates. | ## Works Cited diff --git a/docs/2026-01-09_AI-Research_AppPharmacokineticsImprovementPlan.pdf b/docs/2026-01-09_AI-Research_AppPharmacokineticsImprovementPlan.pdf new file mode 100644 index 0000000..0556e4c Binary files /dev/null and b/docs/2026-01-09_AI-Research_AppPharmacokineticsImprovementPlan.pdf differ