Skip to main content

Courtemanche model.

Project description

Courtemanche finitewave model

This model describes the ionic currents and action potential dynamics of human atrial myocytes. It includes detailed formulations for major ionic currents (fast sodium current, L-type calcium current, inward rectifier potassium current, transient outward potassium current, rapid and slow delayed rectifier potassium currents, and Na⁺/Ca²⁺ exchanger), as well as calcium handling mechanisms.

The Courtemanche model is widely used as a reference atrial electrophysiology model. It has served as the basis for many subsequent atrial modeling studies, including investigations of atrial fibrillation and drug effects.

Reference

Courtemanche M, Ramirez RJ, Nattel S. Ionic mechanisms underlying human atrial action potential properties: insights from a mathematical model. Am J Physiol. 1998 Jul;275(1):H301-21.

DOI: 10.1152/ajpheart.1998.275.1.H301

How to use (quickstart)

python -m examples.courtemanche_example

How to test

python -m pytest -q

Repository structure

.
├── courtemanche/                    # equations package (ops.py)
│   ├── __init__.py
│   └── ops.py                       # model equations (pure functions)
├── implementation/                  # 0D model implementation
│   ├── __init__.py
│   └── courtemanche_0d.py
├── example/
│   └── courtemanche_example.py      # minimal script to run a short trace
├── tests/
│   └── test.py                      # smoke test; reproducibility checks
├── .gitignore
├── LICENSE                          # MIT
├── pyproject.toml                   # configuration file
└── README.md                        # this file

Variables

  • u = -84.5 - Membrane potential (mV)
  • nai = 11.2 - intracellular Na⁺ concentration (mM)
  • ki = 139 - intracellular K⁺ concentration (mM)
  • cai = 0.000102 - intracellular Ca²⁺ concentration (mM)
  • caup = 1.6 - Ca²⁺ concentration in uptake compartment (mM)
  • carel = 1.1 - Ca²⁺ concentration in release compartment (mM)
  • m = 0.00291 - activation gate of fast Na⁺ current
  • h = 0.965 - fast inactivation gate of ina
  • j = 0.978 - slow inactivation gate of ina
  • d = 0.000137 - activation gating variable for ical
  • f = 0.999837 - voltage-dependent inactivation gating variable for ical
  • oa = 0.000592 - activation gate for ito
  • oi = 0.9992 - inactivation gate of ito
  • ua = 0.003519 - activation gating variable for ikur
  • ui = 0.9987 - inactivation gate of ikur
  • xs = 0.0187 - activation gating variable for iks
  • xr = 0.0000329 - activation gating variable for ikur
  • fca = 0.775 - Ca²⁺-dependent inactivation gate of ical
  • irel = 0 - Ca²⁺ release current from SR
  • vrel = 1 - Ca²⁺ flux-dependent inactivation gating variable for irel
  • urel = 0 - activation gating variable for irel
  • wrel = 0.9 - voltage-dependent inactivation gating variable for irel

Parameters

  • gna = 7.8 - maximum conductance of fast sodium current (nS/pF)
  • gnab = 0.000674 - maximum conductance of background sodium current (nS/pF)
  • gk1 = 0.09 - maximum conductance of inward rectifier potassium current (nS/pF)
  • gkr = 0.0294 - maximum conductance of rapid delayed rectifier potassium current (nS/pF)
  • gks = 0.129 - maximum conductance of slow delayed rectifier potassium current (nS/pF)
  • gto = 0.1652 - maximum conductance of transient outward potassium current (nS/pF)
  • gcal = 0.1238 - maximum conductance of L-type calcium current (nS/pF)
  • gcab = 0.00113 - maximum conductance of background calcium current (nS/pF)
  • Vc = 20100 - cell volume (μm3)
  • Vj = Vc * 0.68 - intracellular volume (μm3)
  • Vup = Vj * 0.06 * 0.92 - uptake compartment volume (μm3)
  • Vrel = Vj * 0.06 * 0.08 - release compartment volume (μm3)
  • ibk = 0.0 - background current (pA/pF)
  • cao = 1.8 - extracellular Ca²⁺ concentration (mM)
  • nao = 140 - extracellular Na⁺ concentration (mM)
  • ko = 5.4 - extracellular K⁺ concentration (mM)
  • caupmax = 15 - maximum Ca²⁺ uptake rate (mM/ms)
  • kup = 0.00092 - uptake rate constant (mM)
  • kmnai = 10 - Michaelis-Menten constant for Na⁺ (mM)
  • kmko = 1.5 - Michaelis-Menten constant for K⁺ (mM)
  • kmnancx = 87.5 - Michaelis-Menten constant for Na⁺/Ca²⁺ exchanger (mM)
  • kmcancx = 1.38 - Michaelis-Menten constant for Ca²⁺/Na⁺ exchanger (mM)
  • ksatncx = 0.1 - saturation constant for Na⁺/Ca²⁺ exchanger
  • kmcmdn = 0.00238 - Michaelis-Menten constant for calmodulin (mM)
  • kmtrpn = 0.0005 - Michaelis-Menten constant for troponin (mM)
  • kmcsqn = 0.8 - Michaelis-Menten constant for calsequestrin (mM)
  • trpnmax = 0.07 - maximum troponin concentration (mM)
  • cmdnmax = 0.05 - maximum calmodulin concentration (mM)
  • csqnmax = 10.0 - maximum calsequestrin concentration (mM)
  • inacamax = 1600 - maximum Na⁺ current (pA/pF)
  • inakmax = 0.6 - maximum Na⁺/K⁺ pump current (pA/pF)
  • ipcamax = 0.275 - maximum Ca²⁺ pump current (pA/pF)
  • krel = 30 - maximum release rate for irel
  • iupmax = 0.005 - maximum uptake current (mM/ms)
  • kq10 = 3 - temperature scaling factor for ikur and ito kinetics
  • R = 8.3143 - gas constant (K−1 ⋅ mol−1)
  • T = 310.0 - temperature (K)
  • F = 96.4867 - Faraday constant (C/mmol)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

finitewave_model_courtemanche-0.4.0.tar.gz (15.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

finitewave_model_courtemanche-0.4.0-py3-none-any.whl (10.3 kB view details)

Uploaded Python 3

File details

Details for the file finitewave_model_courtemanche-0.4.0.tar.gz.

File metadata

File hashes

Hashes for finitewave_model_courtemanche-0.4.0.tar.gz
Algorithm Hash digest
SHA256 947c98863446d70b0add2dd1f532c1a321f2225f7bb2380622a63e8b81d85363
MD5 70f4f4c285c07c9ad659dbace4507c7a
BLAKE2b-256 94d166cacd9e30c911f5a60adc3d177e8802650f976558e72cb482d7ce657f57

See more details on using hashes here.

File details

Details for the file finitewave_model_courtemanche-0.4.0-py3-none-any.whl.

File metadata

File hashes

Hashes for finitewave_model_courtemanche-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 b304290074456f68d6166acacf2619cab2d2a30afff85d185d6edc1c25b5c348
MD5 9db7065bdf034d3c6b84a7c0c9f43e3a
BLAKE2b-256 61925c140d3b1c10b5a842e472191737d21e952c445af2f871df8fb28f7b9a24

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page