Location: BG_to_channel @ f4d1c9b72bb5 / matlab_parameter_fitting / calc_beta.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-04-04 09:40:22+12:00
Desc:
With new densities found from fitting Pan - K + to to Clancy model
Permanent Source URI:
https://models.fieldml.org/workspace/82e/rawfile/f4d1c9b72bb570c519cda63998a65c2e9ebd7164/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