Location: BG_TCC @ 9050accc29fb / matlab_parameter_fitting / calc_gate_transitions.m

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-03-22 14:00:03+13:00
Desc:
Updating TCC channel density to literature value (Droogmans 1989)
Permanent Source URI:
https://models.fieldml.org/workspace/831/rawfile/9050accc29fbf95de010da3d2a5cfba7e9719a2e/matlab_parameter_fitting/calc_gate_transitions.m

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

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

end