- Author:
- Shelley Fong <sfon036@UoA.auckland.ac.nz>
- Date:
- 2024-11-05 14:28:14+13:00
- Desc:
- Adding link to protein knowledge
- Permanent Source URI:
- https://models.fieldml.org/workspace/82a/rawfile/9bcb13c79350e86975bf2fc6ff9523d0a70574b8/parameter_finder/output/TEMP.cellml.txt
def model individual_CaB as
def import using "units_and_constants/units_BG.cellml" for
unit mM using unit mM;
unit fmol using unit fmol;
unit per_fmol using unit per_fmol;
unit J_per_mol using unit J_per_mol;
unit fmol_per_sec using unit fmol_per_sec;
unit C_per_mol using unit C_per_mol;
unit J_per_C using unit J_per_C;
unit microm3 using unit microm3;
unit fF using unit fF;
unit fC using unit fC;
unit fA using unit fA;
unit per_second using unit per_second;
unit millivolt using unit millivolt;
unit per_sec using unit per_sec;
unit J_per_K_per_mol using unit J_per_K_per_mol;
unit fmol_per_L using unit fmol_per_L;
unit fmol_per_L_per_sec using unit fmol_per_L_per_sec;
unit per_sec_per_fmol_per_L using unit per_sec_per_fmol_per_L;
unit uM using unit uM;
unit mM_per_sec using unit mM_per_sec;
unit uM_per_sec using unit uM_per_sec;
unit pL using unit pL;
unit m_to_u using unit m_to_u;
enddef;
def import using "units_and_constants/constants_BG.cellml" for
comp constants using comp constants;
enddef;
def comp environment as
var time: second {pub: out};
// initial values
var q_Ca_i: fmol {init: 1e-888, pub: out};
var q_Ca_o: fmol {init: 1e-888, pub: out};
// From submodule
var v_CaB: fmol_per_sec {pub: in};
ode(q_Ca_i, time) = vvv;
ode(q_Ca_o, time) = vvv;
enddef;
def comp CaB_parameters as
var kappa_CaB: fmol_per_sec {init: 2.73233e-05, pub: out};
var K_Ca_i: per_fmol {init: 0.000151953, pub: out};
var K_Ca_o: per_fmol {init: 0.00100872, pub: out};
enddef;
def comp CaB as
var time: second {pub: in};
var R: J_per_K_per_mol {pub: in};
var T: kelvin {pub: in};
// parameters
var kappa_CaB: fmol_per_sec {pub: in};
var K_Ca_i: per_fmol {pub: in};
var K_Ca_o: per_fmol {pub: in};
// Input from global environment
var q_Ca_i: fmol {pub: in};
var q_Ca_o: fmol {pub: in};
// Constitutive parameters
var mu_Ca_i: J_per_mol;
var mu_Ca_o: J_per_mol;
var v_CaB: fmol_per_sec {pub: out};
mu_Ca_i = R*T*ln(K_Ca_i*q_Ca_i);
mu_Ca_o = R*T*ln(K_Ca_o*q_Ca_o);
v_CaB = ppp;
enddef;
def map between environment and CaB for
vars time and time;
vars q_Ca_i and q_Ca_i;
vars q_Ca_o and q_Ca_o;
vars v_CaB and v_CaB;
enddef;
def map between CaB and CaB_parameters for
vars kappa_CaB and kappa_CaB;
vars K_Ca_i and K_Ca_i;
vars K_Ca_o and K_Ca_o;
enddef;
def map between constants and CaB for
vars R and R;
vars T and T;
enddef;
enddef;