Location: Single PASMC model (Gosak et al 2014) @ 6da81433ecbd / Components / JSERCAi.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/JSERCAi.txt

def model JSERCAi 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 JSERCAi as
        var B: uM_per_s {pub: in};
        var c_b: uM {pub: in};
        var c_i: uM {pub: in};
        var J_SERCAi: uM_per_s {pub: out};

        J_SERCAi=B*(pow(c_i,2{dimensionless})/(pow(c_i,2{dimensionless})+pow(c_b,2{dimensionless})));

    enddef;

enddef;