-
Notifications
You must be signed in to change notification settings - Fork 3
/
simulation_simulation_config.json
65 lines (65 loc) · 1.5 KB
/
simulation_simulation_config.json
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
{
"manifest": {
"$BASE_DIR": "${configdir}",
"$OUTPUT_DIR": "$BASE_DIR/output"
},
"target_simulator": "NEURON",
"run": {
"tstart": 0.0,
"tstop": 15000.0,
"dt": 0.1,
"dL": 20.0,
"spike_threshold": -15.0,
"nsteps_block": 5000
},
"conditions": {
"celsius": 31.0,
"v_init": -70.0
},
"inputs": {
"vpsi_inh_spikes": {
"input_type": "spikes",
"module": "sonata",
"input_file": "$BASE_DIR/vpsi_inh_spikes.h5",
"node_set": "vpsi_inh"
},
"thalamus_pyr_spikes": {
"input_type": "spikes",
"module": "sonata",
"input_file": "$BASE_DIR/thalamus_pyr_spikes.h5",
"node_set": "thalamus_pyr"
},
"thalamus_som_spikes": {
"input_type": "spikes",
"module": "sonata",
"input_file": "$BASE_DIR/thalamus_som_spikes.h5",
"node_set": "thalamus_som"
},
"thalamus_cr_spikes": {
"input_type": "spikes",
"module": "sonata",
"input_file": "$BASE_DIR/thalamus_cr_spikes.h5",
"node_set": "thalamus_cr"
},
"shell_spikes": {
"input_type": "spikes",
"module": "sonata",
"input_file": "$BASE_DIR/shell_spikes.h5",
"node_set": "shell"
}
},
"output": {
"log_file": "log.txt",
"output_dir": "$OUTPUT_DIR",
"spikes_file": "spikes.h5"
},
"reports": {
"v_report": {
"variable_name": "v",
"cells": "all",
"module": "membrane_report",
"sections": "soma"
}
},
"node_sets_file": "$BASE_DIR/node_sets.json"
}