-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabc.json
More file actions
31 lines (29 loc) · 746 Bytes
/
abc.json
File metadata and controls
31 lines (29 loc) · 746 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
25
26
27
28
29
{
"composition": {
"MyProcess": "process[glucose:float,glucose:float]",
"cell": {
"glucose" : "float",
"calcium" : "float"
}
},
"interface": { },
"bridge": { },
"state": {
"MyProcess": {
"address": "local:!processes.MyProcess",
"config": {
"calcium_growth": 0.1,
"glucose_growth": 0.1,
"dt" : "0.1",
"alpha": "0.1"
},
"interval": 1.0,
"inputs": {"glucose": ["cell", "glucose"]},
"outputs": {"calcium": ["cell", "calcium"]}
},
"cell": {
"glucose" : "3.0",
"calcium" : "0.0"
}
}
}