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

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-05-24 10:07:05+12:00
Desc:
Add new experiments to expose conductances for accepting noise
Permanent Source URI:
https://models.physiomeproject.org/workspace/874/rawfile/14c89d8f26bf737fb7f9589aeb10dabf4ac3c186/Components/buildsrc/JPLCdeltai.txt

def model JPLCdeltai 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 JPLCdeltai as
        var E: uM_per_s {pub: in};
        var K_Ca: uM {pub: in};
        var c_i: uM {pub: in};
        var J_PLC_delta_i: uM_per_s {pub: out};

        J_PLC_delta_i=E*(sqr(c_i)/(sqr(K_Ca)+sqr(c_i)));

    enddef;

enddef;