Diabetic Glucose

Apps.DiabeticGlucose History

Hide minor edits - Show changes to output

December 22, 2011, at 06:49 AM by 69.169.188.228 -
Changed line 9 from:
%list list-blogroll% [[Main/PythonApp | Download APM Python Package for Blood Glucose Simulation]]
to:
* %list list-blogroll% [[Main/PythonApp | Download APM Python Package for Blood Glucose Simulation]]
December 22, 2011, at 06:49 AM by 69.169.188.228 -
December 22, 2011, at 06:49 AM by 69.169.188.228 -
Changed line 9 from:
[[Main/PythonApp | Download APM Python Package for Blood Glucose Simulation]]
to:
%list list-blogroll% [[Main/PythonApp | Download APM Python Package for Blood Glucose Simulation]]
December 22, 2011, at 06:12 AM by 69.169.188.228 -
Changed line 9 from:
Attach:download.jpg [[Attach:python_diabetic.zip | Download APM Python Package for Blood Glucose Simulation]]
to:
[[Main/PythonApp | Download APM Python Package for Blood Glucose Simulation]]
Deleted lines 10-11:
* %list list-archives% [[Attach:python_diabetic.pdf | Information on Diabetes Mellitus (PDF)]]
Added lines 12-13:

* %list list-page% [[Attach:python_diabetic.pdf | Information on Diabetes Mellitus (PDF)]]
Added lines 10-11:

* %list list-archives% [[Attach:python_diabetic.pdf | Information on Diabetes Mellitus (PDF)]]
Added lines 4-11:

----

!!! Blood Glucose Simulation with Python

Attach:download.jpg [[Attach:python_diabetic.zip | Download APM Python Package for Blood Glucose Simulation]]

Attach:python_diabetic.gif
March 06, 2010, at 10:10 AM by 206.180.155.75 -
Added lines 2-3:

This is a collection of mathematical models that predict the blood glucose levels of a type-I diabetic.  These models have been used in research for blood glucose control.  The objective is to predict the relationship between insulin injection and blood glucose levels.  With a sufficiently accurate mathematical model of a patient, the correct insulin injection rate could be prescribed.  By automating the sensing of blood glucose and the injection of insulin, this system would serve as an artificial pancreas.  The following mathematical models are composed of differential and algebraic equations.
March 06, 2010, at 09:39 AM by 206.180.155.75 -
Changed lines 20-21 from:
(:html:)<font size=1><pre>
to:
(:html:)<font size=2><pre>
Changed lines 104-105 from:
(:htmlend:)
to:
(:htmlend:)
April 23, 2009, at 04:31 PM by 158.35.225.231 -
Added lines 19-104:

(:html:)<font size=1><pre>

! APMonitor Modeling Language
! https://www.apmonitor.com
!
! Model source:
! A. Roy and R.S. Parker. β€œDynamic Modeling of Free Fatty
!  Acids, Glucose, and Insulin: An Extended Minimal Model,”
!  Diabetes Technology and Therapeutics 8(6), 617-626, 2006.
!
Model human
  Parameters
    p1 = 0.068      ! 1/min
    p2 = 0.037      ! 1/min
    p3 = 0.000012    ! 1/min
    p4 = 1.3        ! mL/(min * micro-U)
    p5 = 0.000568    ! 1/mL
    p6 = 0.00006    ! 1/(min * micro-mol)
    p7 = 0.03        ! 1/min
    p8 = 4.5        ! mL/(min * micro-U)

    k1 = 0.02        ! 1/min
    k2 = 0.03        ! 1/min
    pF2 = 0.17      ! 1/min
    pF3 = 0.00001    ! 1/min
    n = 0.142        ! 1/min
    VolG = 117      ! dL
    VolF = 11.7      ! L

    ! basal parameters for Type-I diabetic
    Ib = 0          ! Insulin (micro-U/mL)
    Xb = 0          ! Remote insulin (micro-U/mL)
    Gb = 98          ! Blood Glucose (mg/dL)
    Yb = 0          ! Insulin for Lipogenesis (micro-U/mL)
    Fb = 380        ! Plasma Free Fatty Acid (micro-mol/L)
    Zb = 380        ! Remote Free Fatty Acid (micro-mol/L)

    ! insulin infusion rate
    u1 = 3          ! micro-U/min

    ! glucose uptake rate
    u2 = 300        ! mg/min

    ! external lipid infusion
    u3 = 0          ! mg/min
  End Parameters

  Intermediates
    p9 = 0.00021 * exp(-0.0055*G)  ! dL/(min*mg)
  End Intermediates

  Variables
    I = Ib
    X = Xb
    G = Gb
    Y = Yb
    F = Fb
    Z = Zb
  End Variables

  Equations
    ! Insulin dynamics
    $I = -n*I  + p5*u1

    ! Remote insulin compartment dynamics
    $X = -p2*X + p3*I

    ! Glucose dynamics
    $G = -p1*G - p4*X*G + p6*G*Z + p1*Gb - p6*Gb*Zb + u2/VolG

    ! Insulin dynamics for lipogenesis
    $Y = -pF2*Y + pF3*I

    ! Plasma Free Fatty Acid (FFA) dynamics
    $F = -p7*(F-Fb) - p8*Y*F + p9 * (F*G-Fb*Gb) + u3/VolF

    ! Remote FFA dynamics
    $Z = -k2*(Z-Zb) + k1*(F-Fb)
  End Equations

End Model


</pre></font>
(:htmlend:)
November 04, 2008, at 04:05 AM by 98.199.241.177 -
Changed lines 4-7 from:
!!! Model #1

* %
list list-page% [[Attach:diabetes.apm | diabetes.apm]]
to:

* %list list-page% [[Attach:diabetes.apm | Type-I Diabetic with Fatty Acid Dynamics]]
Changed lines 10-12 from:
!!! Model #2

* %
list list-page% [[Attach:diabetic.apm | diabetic.apm]]
to:

* %list list-page% [[Attach:diabetic.apm | Simplified Type-I Diabetic]]
November 04, 2008, at 03:26 AM by 98.199.241.177 -
Added lines 20-21:
----
November 04, 2008, at 03:25 AM by 98.199.241.177 -
Added line 16:
Added line 18:
November 04, 2008, at 03:25 AM by 98.199.241.177 -
Deleted line 15:
Deleted line 16:
November 04, 2008, at 03:23 AM by 98.199.241.177 -
Added lines 1-19:
!! Blood Glucose Response of an Insulin Dependent Patient

----
!!! Model #1

* %list list-page% [[Attach:diabetes.apm | diabetes.apm]]

A. Roy and R.S. Parker. ''Dynamic Modeling of Free Fatty Acids, Glucose, and Insulin: An Extended Minimal Model,'' Diabetes Technology and Therapeutics 8(6), 617-626, 2006.

----
!!! Model #2

* %list list-page% [[Attach:diabetic.apm | diabetic.apm]]

S. M. Lynch and B. W. Bequette, Estimation based Model Predictive Control of Blood Glucose in Type I Diabetes: A Simulation Study, Proc. 27th IEEE Northeast Bioengineering Conference, IEEE, 2001.

and

S. M. Lynch and B. W. Bequette, Model Predictive Control of Blood Glucose in type I Diabetics using Subcutaneous Glucose Measurements, Proc. ACC, Anchorage, AK, 2002.