Location: BG_TRPN_buffer @ 79f3fe1243b6 / parameter_finder / kinetic_parameters_TRPN_buffer.py

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-04-11 15:56:51+12:00
Desc:
Changing method of number of channels present. Guess density. Using SA of human iPSC for Kernik. Updating volumes
Permanent Source URI:
https://models.physiomeproject.org/workspace/829/rawfile/79f3fe1243b62cc28c220fdbd93b1c4fe64dd159/parameter_finder/kinetic_parameters_TRPN_buffer.py

import math
import numpy as np

def kinetic_parameters(M, include_type2_reactions, dims, V):
    fast_kinetic_constant = 1e6

    Km_TRPN = 0.5e-3 # unit    mM

    kf_TRPN = fast_kinetic_constant
    kr_TRPN = fast_kinetic_constant * Km_TRPN

    W = [1, V['V_myo'], V['V_myo'], V['V_myo']]
    k_kinetic = [kf_TRPN, kr_TRPN]
    N_cT = []
    K_C = []

    return (k_kinetic, N_cT, K_C, W)