Location: BG_CMDN_buffer @ aa7c7bf60e54 / parameter_finder / kinetic_parameters_CMDN_buffer.py

Author:
Shelley Fong <s.fong@auckland.ac.nz>
Date:
2022-05-05 12:39:54+12:00
Desc:
git submodule updated
Permanent Source URI:
https://models.fieldml.org/workspace/822/rawfile/aa7c7bf60e546c6c01359afc25da594ae732e62f/parameter_finder/kinetic_parameters_CMDN_buffer.py

import math
import numpy as np

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

    Km_CMDN = 2.38e-3 # unit    mM

    kf_CMDN = fast_kinetic_constant
    kr_CMDN = fast_kinetic_constant * Km_CMDN

    W = [1, V['V_myo'], V['V_myo'], V['V_myo']]
    k_kinetic = [kf_CMDN, kr_CMDN]
    N_cT = []
    K_C = []

    return (k_kinetic, N_cT, K_C, W)