{"id":215,"date":"2019-04-24T15:12:26","date_gmt":"2019-04-24T15:12:26","guid":{"rendered":"https:\/\/sepia2.unil.ch\/pharmacology\/?page_id=215"},"modified":"2020-09-04T04:18:42","modified_gmt":"2020-09-04T04:18:42","slug":"phenytoin","status":"publish","type":"page","link":"https:\/\/sepia2.unil.ch\/pharmacology\/drugs\/phenytoin\/","title":{"rendered":"Phenytoin"},"content":{"rendered":"\n<h4 class=\"inTable wp-block-heading\">Phenytoin pharmacokinetic parameters<\/h4>\n\n\n\n<table class=\"wp-block-table has-fixed-layout\"><tbody><tr><td> Clearance (CL) <\/td><td>10 L\/h<\/td><\/tr><tr><td> Volume of Distribution (Vd) <\/td><td>70 L<\/td><\/tr><tr><td> Half-life (t1\/2) <\/td><td>4 h<\/td><\/tr><\/tbody><\/table>\n\n\n\n<h3 class=\"wp-block-heading\">Description<\/h3>\n\n\n\n<p>Phenytoin is used in the management of \ngeneralized tonico-clonic and complex partial seizures. It may also be \nused in the prevention of seizures following head trauma, and in \nventricular arrhythmias.\n<\/p>\n\n\n\n<p>The rate of <a href=\"\/pharmacology\/absorption\">absorption<\/a> varies considerably among <a href=\"\/pharmacology\/galenics\">dosage forms<\/a>.\n Phenytoin is poorly soluble in water and is therefore commonly given as\n phenytoin sodium salt, which dissolves more readily. Due to its large \nsurface area, the small intestine is the main site of phenytoin \nabsorption. Phenytoin may be given intravenously to patients who cannot \nreceive the drug orally or who require rapid onset of drug effect.\n<\/p>\n\n\n\n<p>Phenytoin <a href=\"\/pharmacology\/distribution\">distributes<\/a>\n into the body tissues, including the brain, within 30 to 60 minutes \nafter reaching the systemic circulation. The drug is highly bound to \nboth plasma proteins (mostly albumin) and to tissue components. A \ndecrease in plasma protein binding, hence an increase in the <a href=\"\/pharmacology\/volumeofdistribution\">volume of distribution<\/a>,\n occurs in conditions reducing the amount of serum albumin (such as \nhepatic failure and the nephrotic syndrome), in the presence of other \ndrugs or during the accumulation of endogenous substances competing for \nthe albumin binding sites (as in renal failure). Phenytoin crosses the \nplacenta and enters breast milk.\n<\/p>\n\n\n\n<p>Elimination occurs primarily by biotransformation to\n several inactive hydroxylated metabolites. Some of these metabolites \nare further metabolized by conjugation with glucuronic acid. Metabolites\n are then mostly <a href=\"\/pharmacology\/excretion\">excreted<\/a> in the urine. Phenytoin follows <a href=\"\/pharmacology\/non-linear-kinetics\">nonlinear<\/a> (or zero-order) kinetics at therapeutic concentrations, because the rate of <a href=\"\/pharmacology\/metabolism\">metabolism<\/a> is close to the maximum capacity of the enzymes involved. In nonlinear kinetics, <a href=\"\/pharmacology\/clearance\">clearance<\/a> and <a href=\"\/pharmacology\/halflife\">half-life<\/a>\n fluctuate with plasma concentration. As the rate of administration \nincreases, the plasma concentration at steady state increases \ndisproportionately. If the rate of absorption equals or exceeds the \nmaximum rate of metabolism, steady state is never achieved. This \ncapacity-limited metabolism explains the interindividual <a href=\"\/pharmacology\/pharmacokinetic-variability\">variability<\/a>\n and the lack of predictability of the phenytoin plasma \nconcentration-time profile, because the maximum capacity varies from \npatient to patient. There are many conditions in which the metabolism of\n phenytoin is altered such as in hepatic cirrhosis or during the \nadministration of <a href=\"\/pharmacology\/concomitant-drugs\">concomitant drugs<\/a>.<\/p>\n\n\n\n<p><p class=\"hiddenTitle\">Chart Pharmacokinetics<\/p>\n<div>\n\n    <div id=\"chartContainer\">\n        <canvas id=\"chart\"><\/canvas>\n        <div class=\"\" id=\"divSliderContainer\"><\/div>\n    <\/div>\n\n    <script>\n\n        let chart;\n        let baseDataChartValues = [];\n        let dataChart = [];\n        let dataChartStoredValues = [];\n        let labelsChart = [];\n\n        let dose = 200;\n        let baseDose = 1000;\n\n        let mDose = 200;\n        let baseMDose = 1000;\n\n        let tau = 8;\n        let baseTau = 6;\n\n        let vd = 70;\n        let baseVd = 50;\n\n        let cl = 1;\n        let baseCl = 10;\n\n        let f = 0.7;\n        let baseF = 0.7;\n\n        let ka = 1.5;\n        let tH;\n\n        const maxTime = 96;\n\n        function getPlasmaConcentration(h) {\n            let formulaPlasmaConcentration = (dose*f*ka\/(vd*(ka-cl\/vd))*(Math.exp(-cl\/vd*h)-Math.exp(-ka*h))+(mDose*f*ka\/(vd*(ka-cl\/vd))*((1-Math.exp(-Math.floor((h)\/tau)*cl\/vd*tau))\/(1-Math.exp(-cl\/vd*tau))*Math.exp(-cl\/vd*(h-Math.floor(h\/tau)*tau))-(1-Math.exp(-Math.floor((h)\/tau)*ka*tau))\/(1-Math.exp(-ka*tau))*Math.exp(-ka*(h-Math.floor(h\/tau)*tau)))));\n\n            return formulaPlasmaConcentration;\n        }\n\n        \/*\n         *\n         * t1\/2 = ln(2) * (volume of distribution \/ clearance)\n         *\n         *\/\n        function getHalfLife() {\n            tH = Math.log(2)*(vd\/cl);\n            return (Math.round(tH * 100) \/ 100);\n        }\n\n        function updateSlider(updateStored = false) {\n            dataChart = [];\n            if(updateStored) dataChartStoredValues = [];\n\n            for(let i = 0; i <= maxTime; i++) {\n                let concentration = getPlasmaConcentration(i);\n                dataChart.push(concentration);\n                if(updateStored) dataChartStoredValues.push(concentration);\n            }\n\n            chart.data.datasets[0].data = dataChart;\n            chart.data.datasets[1].data = dataChartStoredValues;\n\n            $( \"#slider-f\" ).slider( \"option\", \"value\", tau);\n            chart.update();\n        }\n\n        let sliderF = '<div id=\"slider-f\" class=\"sliderRange\">' +\n                            '<span id=\"custom-handle-f\" class=\"ui-slider-handle customHandle\"><\/span>' +\n                            '<span class=\"spanUnit\" id=\"\">Tau<\/span>' +\n                        '<\/div>';\n\n        $('#divSliderContainer').append(sliderF);\n\n\n   \n\n        $(function() {\n\n            let handle = $('#custom-handle-f');\n\n            $( \"#slider-f\" ).slider({\n                orientation: \"vertical\",\n                range: \"true\",\n                min: 4,\n                max: 24,\n                step: 1,\n                value: tau,\n                create: function() {\n                    handle.text( $( this ).slider( \"value\" ) );\n                },\n                slide: function( event, ui ) {\n                    tau = ui.value;\n                    handle.text( ui.value );\n                    updateSlider();\n                }\n            });\n        });\n\n        Chart.pluginService.register({\n            beforeInit: function(chart) {\n\n                for(let i = 0; i <= maxTime; i++) {\n                    labelsChart.push(i);\n                    dataChart.push(getPlasmaConcentration(i));\n\n                    dataChartStoredValues = dataChart;\n                    baseDataChartValues = dataChart;\n                }\n\n            }\n        });\n\n        chart = new Chart(document.getElementById(\"chart\"), {\n            type: 'line',\n            data: {\n                labels: labelsChart,\n                datasets: [{\n                    label: \"Plasma Concentration\",\n                    data: dataChart,\n                    borderColor: colorDatasetMain.borderColor,\n                    fillColor: colorDatasetMain.fillColor,\n                    strokeColor: colorDatasetMain.strokeColor,\n                    highlightFill: colorDatasetMain.highlightFill,\n                    highlightStroke: colorDatasetMain.highlightStroke,\n                    borderWidth: \"1\",\n                    pointRadius: 0,\n                    fill: false\n                }, {\n                    label: \"Plasma Concentration\",\n                    data: dataChartStoredValues,\n                    borderColor: colorDatasetStored.borderColor,\n                    fillColor: colorDatasetStored.fillColor,\n                    strokeColor: colorDatasetStored.strokeColor,\n                    highlightFill: colorDatasetStored.highlightFill,\n                    highlightStroke: colorDatasetStored.highlightStroke,\n                    borderWidth: \"1\",\n                    pointRadius: 0,\n                    fill: false\n                }]\n            },\n            options: {\n                scales: {\n                    xAxes: [{\n                        scaleLabel: {\n                            display: true,\n                            labelString: 'H [hour]'\n                        }\n                    }],\n                    yAxes: [{\n                        scaleLabel: {\n                            display: true,\n                            labelString: 'C [mg\/l]'\n                        }\n                    }]\n                },\n                responsive: true,\n                maintainAspectRatio: false\n            }\n        });\n\n    <\/script>\n\n<\/div><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Clinical implications<\/h3>\n\n\n\n<p>Because of the capacity-limited <a href=\"\/pharmacology\/metabolism\">metabolism<\/a> of phenytoin, a small change in the <a href=\"\/pharmacology\/galenics\">dosage form<\/a> or <a href=\"\/pharmacology\/bioavailability\">bioavailability<\/a> can produce a dramatic change in the steady state concentration. <a href=\"\/pharmacology\/dosage-individualization\">Individualization<\/a> is problematic because of interindividual <a href=\"\/pharmacology\/pharmacokinetic-variability\">variability<\/a>\n in maximum capacity. Therefore, after selection and initiation of a \nmaintenance dose, the patient's response must be carefully evaluated not\n only by recording seizure frequency and watching for adverse reactions,\n but mainly by obtaining phenytoin plasma concentrations (<a href=\"\/pharmacology\/dosage-individualization\">Therapeutic Drug Monitoring<\/a>).\n One or two weeks may be required for steady state to be achieved. For \nmonitoring a plasma phenytoin concentration, it is critical to know if \nthe observed level represents a steady state value. \n<\/p>\n\n\n\n<p>The changes produced in the <a href=\"\/pharmacology\/volumeofdistribution\">volume of distribution<\/a>  by altered binding to the plasma proteins have probably little  therapeutic consequences. However, this altered binding to the plasma  proteins is meaningful with respect to the interpretation of phenytoin  total serum concentration: in presence of hypoalbuminemia, <a href=\"\/pharmacology\/concomitant-drugs\">concomitant drug<\/a> administration or renal impairment lower therapeutic concentrations must be targeted.<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Phenytoin pharmacokinetic parameters Clearance (CL) 10 L\/h Volume of Distribution (Vd) 70 L Half-life (t1\/2) 4 h Description Phenytoin is used in the management of generalized tonico-clonic and complex partial seizures. It may also be used in the prevention of seizures following head trauma, and in ventricular arrhythmias. The rate of absorption varies considerably among &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/sepia2.unil.ch\/pharmacology\/drugs\/phenytoin\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Phenytoin&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"parent":10,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-215","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/pages\/215","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/comments?post=215"}],"version-history":[{"count":35,"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/pages\/215\/revisions"}],"predecessor-version":[{"id":1354,"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/pages\/215\/revisions\/1354"}],"up":[{"embeddable":true,"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/pages\/10"}],"wp:attachment":[{"href":"https:\/\/sepia2.unil.ch\/pharmacology\/wp-json\/wp\/v2\/media?parent=215"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}