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

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-06-15 09:21:48+12:00
Desc:
Add original data and update the figures
Permanent Source URI:
https://models.physiomeproject.org/workspace/874/rawfile/38c819df79c4c4fe0a857f4ce531a909a319e33d/Components/buildsrc/IP3.txt

def model IP3 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 IP3 as
        var J_PLCagonisti: uM_per_s {pub: in};
        var J_PLC_delta_i: uM_per_s {pub: in};
        var J_degradi: uM_per_s {pub: in};
        var t: second {pub: in};
        var Ii_init: uM {pub: in};
        var I_i: uM {init: Ii_init, pub: out};

        ode(I_i, t) = J_PLCagonisti+J_PLC_delta_i-J_degradi;

    enddef;

enddef;