forked from INM-6/human-multi-area-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefault_sim_params.py
33 lines (31 loc) · 1.12 KB
/
default_sim_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
'''
Provides default parameters used to instantiate the network.
'''
params = {
# Simulation time (in ms).
't_sim': 1000.0,
# Resolution of the simulation (in ms).
'sim_resolution': 0.1,
# Masterseed for NEST and NumPy.
'master_seed': 55,
# Recording interval of the membrane potential (in ms).
'rec_V_int': 1.0,
# If True, data will be overwritten,
# If False, a NESTError is raised if the files already exist.
'overwrite_files': True,
# Print the time progress, this should only be used when the simulation
# is run on a local machine.
'print_time': False,
# Set initial value of the membrane potential.
'V0_mean': -150.,
# Set initial standard deviation of the membrane potential.
'V0_sd': 50.,
# Connectivity initialization rule. Options:
# * fixed_total_number: fixes the total numer of synapses
# * fixed_indegree: fixes indegree of single neurons
'connection_rule': 'fixed_total_number',
# minimal cortico-cortical delay in ms (0 corresponds to sim_resolution)
'delay_cc_min': 0.,
# Recording devices.
'rec_dev': ['spike_recorder']
}