-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsimulation_config.json
54 lines (54 loc) · 1.13 KB
/
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
{
"manifest": {
"$BASE_DIR": "${configdir}",
"$OUTPUT_DIR": "$BASE_DIR/output"
},
"target_simulator": "NEURON",
"run": {
"tstart": 0.0,
"tstop": 4000.0,
"dt": 0.1,
"dL": 20.0,
"spike_threshold": -15.0,
"nsteps_block": 5000
},
"conditions": {
"celsius": 34.0,
"v_init": -80.0
},
"inputs": {
"tone_spikes": {
"input_type": "spikes",
"module": "csv",
"input_file": "$BASE_DIR/tone_spikes.csv",
"node_set": "tone"
},
"shock_spikes": {
"input_type": "spikes",
"module": "csv",
"input_file": "$BASE_DIR/shock_spikes.csv",
"node_set": "shock"
}
},
"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"
},
"cai_report": {
"variable_name": "cai",
"cells": "all",
"module": "membrane_report",
"sections": "soma"
}
},
"node_sets_file": "$BASE_DIR/node_sets.json",
"network": "$BASE_DIR/circuit_config.json"
}