Location: cellLib @ 53a003ba1ff8 / BG_fit / calc_alpha.m

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-02-16 11:57:05+13:00
Desc:
Add Se component
Permanent Source URI:
https://models.cellml.org/workspace/6bc/rawfile/53a003ba1ff8a4369a834d9a555eccf626f23417/BG_fit/calc_alpha.m

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

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

end