-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparams.py
executable file
·80 lines (76 loc) · 2.25 KB
/
params.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
params = {
"c_threshold": 0.01, # calcium act. above threshold -> BMP production (alpha in paper)
"c_b_threshold": 1, # BMP below threshold -> streak (beta_C in paper)
'v_b_threshold': 1.22, # BMP below threshold -> Vg1 production (beta_V in paper)
"rho": 1, # rate of BMP production (k_B in paper)
"gamma_0": 0.3, # BMP decay (base)
"gamma_c": 0.1, # BMP decay (calcium act. dependent)
"gamma_v": 0.1, # BMP decay (Vg1 dependent)
"k": 500, # calcium act. production rate, when streak on (k_C in paper)
"k_v": 5, # Vg1 production rate
"mu": 50, # diffusion rate (D in paper)
"lambda_const": 5, # calcium act. decay (lambda in paper)
"lambda_const_v_0": 4, # Vg1 decay (mu in paper)
"lambda_const_v_b": 0 # Vg1 decay dependent on BMP level (not used in paper, set to 0)
}
# params_save_2022_04_18 = {
# "c_threshold": 0.01,
# "c_b_threshold": 1,
# 'v_b_threshold': 1.22,
# "rho": 1,
# "gamma_0": 0.3,
# "gamma_c": 0.1,
# "gamma_v": 0.1,
# "k": 500,
# "k_v": 5,
# "mu": 50,
# "lambda_const": 5,
# "lambda_const_v_0": 4,
# "lambda_const_v_b": 0
# }
# params_save = {
# "c_threshold": 0.01,
# "c_b_threshold": 1,
# 'v_b_threshold': 1.35,
# "rho": 1,
# "gamma_0": 0.3,
# "gamma_c": 0.1,
# "gamma_v": 0,
# "k": 500,
# "k_v": 5,
# "mu": 50,
# "lambda_const": 5,
# "lambda_const_v_0": 4,
# "lambda_const_v_b": 0
# }
karen_params = {
"number_of_cells": 100,
"c_threshold": 0.01,
"c_b_threshold": 1,
'v_b_threshold': 1.5,
"rho": 1,
"gamma_0": 0.1,
"gamma_c": 0.1,
"gamma_v": 0,
"k": 500,
"k_v": 5,
"mu": 50,
"lambda_const": 2,
"lambda_const_v_0": 2,
"lambda_const_v_b": 0
}
# params_unknown = {
# "c_threshold": 0.01,
# "c_b_threshold": 1,
# 'v_b_threshold': 1.22,
# "rho": 1,
# "gamma_0": 0.3,
# "gamma_c": 0.1,
# "gamma_v": 0.1,
# "k": 100, # calcium production
# "k_v": 5,
# "mu": 4, # diffusion constant D
# "lambda_const": 2, # calcium decay
# "lambda_const_v_0": 4,
# "lambda_const_v_b": 0
# }