Location: BG_TCC @ b315defc7b02 / Clancy_matlab_parameter_fitting / calc_beta.m

Author:
Shelley Fong <sfon036@UoA.auckland.ac.nz>
Date:
2024-11-06 10:29:14+13:00
Desc:
Adding exposure files:
Permanent Source URI:
https://models.physiomeproject.org/workspace/831/rawfile/b315defc7b028a86f49daafe20f86ea3c827ce2e/Clancy_matlab_parameter_fitting/calc_beta.m

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

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

end