-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathconstants.py
More file actions
27 lines (15 loc) · 777 Bytes
/
constants.py
File metadata and controls
27 lines (15 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env pyhton
# -*- coding: UTF-8 -*-
__author__ = 'Chao Wu'
__date__ = '2/15/2019'
__version__ = '1.0'
R = 8.315e-3 # ideal gas constant, kJ/mol/K
T = 298.15 # absolute room temperature, K, or 25 C
deftMW = 40 # molecular weight, kDa
deftKcat = 200 # default catalytic rate constant, 1/s
deftKm = 0.2 # default Michaelis constant, mM
deftKcatRelBnds = [0.1, 10] # relative range of catalytic rate constant
deftKmRelBnds = [0.1, 10] # relative range of Michaelis constant
deftKeqRelBnds = [1, 10] # relative range of equilibrium constant
nsteps = 100 # # of integration step
eigThreshold = 1 # threshold of eigenvalues (-1e-6 recommended, if too much system failure in ensemble models, increase gradually to 1 or larger for real values)