Location: BG_CaL @ 693ba65f6d24 / matlab_parameter_fitting / calc_alpha.m

Author:
Shelley Fong <sfon036@UoA.auckland.ac.nz>
Date:
2024-11-05 14:25:08+13:00
Desc:
Adding link to protein knowledge
Permanent Source URI:
https://models.cellml.org/workspace/6d7/rawfile/693ba65f6d240a9dae6d01a30b125a86c0542d72/matlab_parameter_fitting/calc_alpha.m

function alpha = calc_alpha(params,V)
% params: [kf, zf, kr, zr];
R = 8.314;
T = 310;
F = 96485;

alpha = params(1)*exp(params(2)*F*V/R/T);

end