Location: Single PASMC model (Gosak et al 2014) @ 2342955c5f05 / Components / JVOCCi.txt

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-04-20 20:29:47+12:00
Desc:
Correct the models and rebuild; Status: the model output is not correct, need to check the parameters.
Permanent Source URI:
https://models.cellml.org/workspace/83f/rawfile/2342955c5f054b3ddf8883e245b20b574acfa8d2/Components/JVOCCi.txt

def model JVOCCi as
    def import using "../cellLib/Components/units.cellml" for
        unit mV using unit mV;
        unit uM_per_s using unit uM_per_s;
        unit uM_per_s_mV using unit uM_per_s_mV;
    enddef;

    def comp JVOCCi as
        var G_Ca: uM_per_s_mV {pub: in};
        var v_Ca1: mV {pub: in};
        var v_Ca2: mV {pub: in};
        var R_Ca: mV {pub: in};
        var v_i: mV {pub: in};
        var J_VOCCi: uM_per_s {pub: out};

        J_VOCCi=G_Ca*((v_Ca1-v_i)/(1{dimensionless}+exp((v_Ca2-v_i)/R_Ca)));

    enddef;

enddef;