Location: Single PASMC model (Gosak et al 2014) @ faeaed6e49eb / Components / Casr.txt

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-04-21 11:57:44+12:00
Desc:
Use the automated mapping to rebuild the models
Permanent Source URI:
https://models.cellml.org/workspace/83f/rawfile/faeaed6e49eb8368fd38c2748dba9a75bd88364b/Components/Casr.txt

def model Casr 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 Casr as
        var J_SERCAi: uM_per_s {pub: in};
        var J_CICRi: uM_per_s {pub: in};
        var J_leaki: uM_per_s {pub: in};
        var t: second {pub: in};
        var si_init: uM {pub: in};
        var s_i: uM {init: si_init, pub: out};

        ode(s_i,t)=J_SERCAi-J_CICRi-J_leaki;

    enddef;

enddef;