- 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/JNKAi.txt
def model JNKAi as
def import using "../cellLib/Components/units.cellml" for
unit mM using unit mM;
unit uM_per_s using unit uM_per_s;
enddef;
def comp JNKAi as
var C_NKA: uM_per_s {pub: in};
var K_mK: mM {pub: in};
var K_out: mM {pub: in};
var J_NKAi: uM_per_s {pub: out};
J_NKAi=C_NKA*(K_out/(K_mK+K_out));
enddef;
enddef;