Location: BG_Kr @ d0ecd7a7b4fe / matlab_parameter_finding / calc_alpha.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-28 16:32:01+13:00
Desc:
With channel density checked using patch clamp against kinetic model, and G_GHK fitted better
Permanent Source URI:
http://models.cellml.org/workspace/82c/rawfile/d0ecd7a7b4fe4b853db2483ffff2089a214e65c8/matlab_parameter_finding/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