Location: Single PASMC model (Gosak et al 2014) @ 6da81433ecbd / Components / JNKAi.txt

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-04-22 10:51:28+12:00
Desc:
Rebuild the model using the new scripts
Permanent Source URI:
https://models.cellml.org/workspace/83f/rawfile/6da81433ecbd0457201bb2d3271f1cc7e238bd68/Components/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;