Location: SinglePASMC @ d3481301a126 / Components / JNKA.txt

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-04-20 10:25:24+12:00
Desc:
Pass the inputs to the children models
Permanent Source URI:
https://staging.physiomeproject.org/workspace/83f/rawfile/d3481301a126fe74f4212e78066010c35d3c91f8/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_NKA: uM_per_s {pub: out};

        J_NKA=C_NKA*(K_out/(K_mK+K_out));

    enddef;

enddef;