Location: cellLib @ 24f6dc8a57e8 / BG_fit / calc_beta.m

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2021-11-16 10:52:05+13:00
Desc:
Updae the plot function and delete the fit function. The fit function is moved to individual gate fitting process
Permanent Source URI:
https://models.cellml.org/workspace/6bc/rawfile/24f6dc8a57e8f60221d340e11ca44504cfb97758/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