- Author:
- WeiweiAi <wai484@aucklanduni.ac.nz>
- Date:
- 2022-06-13 11:44:41+12:00
- Desc:
- Modify the intracelluar K from 4.7 mM to 5.9 mM
- Permanent Source URI:
- https://models.cellml.org/workspace/83f/rawfile/887894c158d460d4505bd3fb26d23a7b939ca442/Components/buildsrc/JNCXi.txt
def model JNCXi as
def import using "../cellLib/Components/units.cellml" for
unit mV using unit mV;
unit uM using unit uM;
unit uM_per_s using unit uM_per_s;
unit uM_per_s_mV using unit uM_per_s_mV;
enddef;
def comp JNCXi as
var G_NCX: uM_per_s_mV {pub: in};
var v_NCX: mV {pub: in};
var c_NCX: uM {pub: in};
var c_i: uM {pub: in};
var v_i: mV {pub: in};
var J_NCXi: uM_per_s {pub: out};
J_NCXi=G_NCX*(c_i/(c_i+c_NCX))*(v_NCX-v_i);
enddef;
enddef;