Changeset 715 for trunk/src/cells.py
- Timestamp:
- 02/18/10 13:57:50 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/cells.py (modified) (7 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.
