Location: cellLib @ 7dbe7fa767e2 / BG_fit / calc_alpha.m

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-05-04 14:00:49+12:00
Desc:
rewrite the modelValidation as function
Permanent Source URI:
https://models.fieldml.org/workspace/6bc/rawfile/7dbe7fa767e2f7dcfe1f7a7421ae4cafeeece2a9/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