Location: BG_Na_background @ 4e37e053bf80 / matlab_parameter_fitting / calc_beta_simple.m

Author:
Shelley Fong <sfon036@UoA.auckland.ac.nz>
Date:
2024-11-08 11:33:15+13:00
Desc:
Adding exposure files and fixing cellml
Permanent Source URI:
https://models.cellml.org/workspace/82b/rawfile/4e37e053bf80a5eda4b9d523b59348e9bc21db47/matlab_parameter_fitting/calc_beta_simple.m

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

beta = params(2)*exp(z*F*V/R/T);

end