Location: BG_Kr @ 59c0b4051626 / Knk_matlab_parameter_fitting / calc_alpha.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-04-05 11:36:21+12:00
Desc:
Changing Kr to be Kernik formulation
Permanent Source URI:
http://models.cellml.org/workspace/82c/rawfile/59c0b40516263092373ebf6e1665e3a3e3535df8/Knk_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