Location: cellLib @ 4ff19c3f257b / BG_fit / calc_gate_transitions.m
- Author:
- WeiweiAi <wai484@aucklanduni.ac.nz>
- Date:
- 2022-04-20 20:26:31+12:00
- Desc:
- Add concentration clamp; Check interface IO when mapping; Add init in the csv to allow building a model with init:
- Permanent Source URI:
- https://models.cellml.org/workspace/6bc/rawfile/4ff19c3f257b33704e3c001e62550111f4ed828a/BG_fit/calc_gate_transitions.m
function [alpha,beta] = calc_gate_transitions(params,V,T) % params: [kf, zf, kr, zr]; R = 8.314; F = 96485; alpha = params(1)*exp(params(2)*F*V/R/T); beta = params(3)*exp(params(4)*F*V/R/T); end