Changeset 715
- Timestamp:
- 02/18/10 13:57:50 (2 years ago)
- Location:
- trunk
- Files:
-
- 1 added
- 2 modified
-
examples/tools/run_all_examples.py (added)
-
src/cells.py (modified) (7 diffs)
-
src/nest/cells.py (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/cells.py
r713 r715 40 40 'cm' : 1.0, # Capacity of the membrane in nF 41 41 'tau_m' : 20.0, # Membrane time constant in ms. 42 'tau_refrac' : 0. 0, # Duration of refractory period in ms.42 'tau_refrac' : 0.1, # Duration of refractory period in ms. 43 43 'tau_syn_E' : 0.5, # Rise time of the excitatory synaptic alpha function in ms. 44 44 'tau_syn_I' : 0.5, # Rise time of the inhibitory synaptic alpha function in ms. … … 62 62 'cm' : 1.0, # Capacity of the membrane in nF 63 63 'tau_m' : 20.0, # Membrane time constant in ms. 64 'tau_refrac' : 0. 0, # Duration of refractory period in ms.64 'tau_refrac' : 0.1, # Duration of refractory period in ms. 65 65 'tau_syn_E' : 5.0, # Decay time of excitatory synaptic current in ms. 66 66 'tau_syn_I' : 5.0, # Decay time of inhibitory synaptic current in ms. … … 83 83 'cm' : 1.0, # Capacity of the membrane in nF 84 84 'tau_m' : 20.0, # Membrane time constant in ms. 85 'tau_refrac' : 0. 0, # Duration of refractory period in ms.85 'tau_refrac' : 0.1, # Duration of refractory period in ms. 86 86 'tau_syn_E' : 0.3, # Rise time of the excitatory synaptic alpha function in ms. 87 87 'tau_syn_I' : 0.5, # Rise time of the inhibitory synaptic alpha function in ms. … … 105 105 'cm' : 1.0, # Capacity of the membrane in nF 106 106 'tau_m' : 20.0, # Membrane time constant in ms. 107 'tau_refrac' : 0. 0, # Duration of refractory period in ms.107 'tau_refrac' : 0.1, # Duration of refractory period in ms. 108 108 'tau_syn_E' : 5.0, # Decay time of the excitatory synaptic conductance in ms. 109 109 'tau_syn_I' : 5.0, # Decay time of the inhibitory synaptic conductance in ms. … … 133 133 'cm' : 1.0, # Capacity of the membrane in nF 134 134 'tau_m' : 20.0, # Membrane time constant in ms. 135 'tau_refrac' : 0. 0, # Duration of refractory period in ms.135 'tau_refrac' : 0.1, # Duration of refractory period in ms. 136 136 'tau_syn_E' : 5.0, # Decay time of the excitatory synaptic conductance in ms. 137 137 'tau_syn_I' : 5.0, # Decay time of the inhibitory synaptic conductance in ms. … … 211 211 'w_init' : 0.0, # Initial spike-adaptation current in nA 212 212 'cm' : 0.281, # Capacitance of the membrane in nF 213 'tau_refrac': 0. 0, # Duration of refractory period in ms.213 'tau_refrac': 0.1, # Duration of refractory period in ms. 214 214 'v_spike' : -40.0, # Spike detection threshold in mV. 215 215 'v_reset' : -70.6, # Reset value for V_m after a spike. In mV. … … 244 244 'w_init' : 0.0, # Initial spike-adaptation current in nA 245 245 'cm' : 0.281, # Capacitance of the membrane in nF 246 'tau_refrac': 0. 0, # Duration of refractory period in ms.246 'tau_refrac': 0.1, # Duration of refractory period in ms. 247 247 'v_spike' : -40.0, # Spike detection threshold in mV. 248 248 'v_reset' : -70.6, # Reset value for V_m after a spike. In mV. -
trunk/src/nest/cells.py
r713 r715 18 18 ('cm', 'C_m', 1000.0), # C_m is in pF, cm in nF 19 19 ('tau_m', 'tau_m'), 20 ('tau_refrac', 't_ref' , "max(get_time_step(), tau_refrac)", "t_ref"),20 ('tau_refrac', 't_ref'), 21 21 ('tau_syn_E', 'tau_syn_ex'), 22 22 ('tau_syn_I', 'tau_syn_in'), … … 40 40 ('cm', 'C_m', 1000.0), # C_m is in pF, cm in nF 41 41 ('tau_m', 'tau_m'), 42 ('tau_refrac', 't_ref' , "max(get_time_step(), tau_refrac)", "t_ref"),42 ('tau_refrac', 't_ref'), 43 43 ('tau_syn_E', 'tau_syn_ex'), 44 44 ('tau_syn_I', 'tau_syn_in'), … … 61 61 ('cm', 'C_m', 1000.0), # C_m is in pF, cm in nF 62 62 ('tau_m', 'g_L', "cm/tau_m*1000.0", "C_m/g_L"), 63 ('tau_refrac', 't_ref' , "max(get_time_step(), tau_refrac)", "t_ref"),63 ('tau_refrac', 't_ref'), 64 64 ('tau_syn_E', 'tau_syn_ex'), 65 65 ('tau_syn_I', 'tau_syn_in'), … … 84 84 ('cm', 'C_m', 1000.0), # C_m is in pF, cm in nF 85 85 ('tau_m', 'g_L', "cm/tau_m*1000.0", "C_m/g_L"), 86 ('tau_refrac', 't_ref' , "max(get_time_step(), tau_refrac)", "t_ref"),86 ('tau_refrac', 't_ref'), 87 87 ('tau_syn_E', 'tau_syn_ex'), 88 88 ('tau_syn_I', 'tau_syn_in'), … … 112 112 ('cm', 'C_m', 1000.0), # C_m is in pF, cm in nF 113 113 ('tau_m', 'g_L', "cm/tau_m*1000.0", "C_m/g_L"), 114 ('tau_refrac', 't_ref' , "max(get_time_step(), tau_refrac)", "t_ref"),114 ('tau_refrac', 't_ref'), 115 115 ('tau_syn_E', 'tau_syn_ex'), 116 116 ('tau_syn_I', 'tau_syn_in'),
