Location: cellLib @ 53a003ba1ff8 / BG_fit / calc_beta.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.physiomeproject.org/workspace/6bc/rawfile/53a003ba1ff8a4369a834d9a555eccf626f23417/BG_fit/calc_beta.m

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

beta = params(3)*exp(params(4)*F*V/R/T);

end