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

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-06-15 11:08:09+12:00
Desc:
Include simFig3
Permanent Source URI:
https://models.cellml.org/workspace/874/rawfile/eb9b6ae068716f451953bd5900bcfdaa5761b0cf/Components/buildsrc/Jdegradi.txt

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

    def comp Jdegradi as
        var k: per_s {pub: in};
        var I_i: uM {pub: in};
        var J_degradi: uM_per_s {pub: out};

        J_degradi=k*I_i;

    enddef;

enddef;