Location: cellLib @ f43cbb897309 / BG_fit / calc_beta.m

Author:
WeiweiAi <wai484@aucklanduni.ac.nz>
Date:
2022-07-01 10:53:27+12:00
Desc:
Output dSi in MarkovS model; when connecting inputs of the parent module to the inputs of the children, use pub interface instead of catogary
Permanent Source URI:
https://models.physiomeproject.org/workspace/6bc/rawfile/f43cbb897309bd088d85b7d77ca07f3e37dcc8ec/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