Location: Modeling the Recruitment and Synchronization of SMCs (Koenigsberger et al. 2004) @ e49ff561204d / Components / buildsrc / JIP3i.txt

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-06-23 10:59:39+12:00
Desc:
Remove a typo
Permanent Source URI:
http://models.cellml.org/workspace/874/rawfile/e49ff561204dfdf4692d90837d271bd04fc6286d/Components/buildsrc/JIP3i.txt

def model JIP3i 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 JIP3i as
        var F_IP3: uM_per_s {pub: in};
        var K_r: uM {pub: in};
        var I_i: uM {pub: in};
        var J_IP3i: uM_per_s {pub: out};

        J_IP3i=F_IP3*(sqr(I_i)/(sqr(K_r)+sqr(I_i)));

    enddef;

enddef;