Location: Single PASMC model (Gosak et al 2014) @ 887894c158d4 / Components / buildsrc / Jleaki.txt

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/Jleaki.txt

def model Jleaki as
    def import using "../cellLib/Components/units.cellml" for
        unit per_s using unit per_s;
        unit uM using unit uM;
        unit uM_per_s using unit uM_per_s;
    enddef;

    def comp Jleaki as
        var L: per_s {pub: in};
        var s_i: uM {pub: in};
        var J_leaki: uM_per_s {pub: out};

        J_leaki=L*s_i;

    enddef;

enddef;