Location: Single PASMC model (Gosak et al 2014) @ faeaed6e49eb / Components / JNKA.txt

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-04-21 11:57:44+12:00
Desc:
Use the automated mapping to rebuild the models
Permanent Source URI:
https://models.cellml.org/workspace/83f/rawfile/faeaed6e49eb8368fd38c2748dba9a75bd88364b/Components/JNKA.txt

def model JNKA 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 JNKA 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;