Location: Single PASMC model (Gosak et al 2014) @ 2342955c5f05 / Components / JCICRi.txt

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-04-20 20:29:47+12:00
Desc:
Correct the models and rebuild; Status: the model output is not correct, need to check the parameters.
Permanent Source URI:
https://models.cellml.org/workspace/83f/rawfile/2342955c5f054b3ddf8883e245b20b574acfa8d2/Components/JCICRi.txt

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

    def comp JCICRi as
        var C: uM_per_s {pub: in};
        var s_c: uM {pub: in};
        var c_c: uM {pub: in};
        var s_i: uM {pub: in};
        var c_i: uM {pub: in};
        var J_CICRi: uM_per_s {pub: out};

        J_CICRi=C*(pow(s_i,2{dimensionless})/(pow(s_i,2{dimensionless})+pow(s_c,2{dimensionless})))*(pow(c_i,4{dimensionless})/(pow(c_i,4{dimensionless})+pow(c_c,4{dimensionless})));

    enddef;

enddef;