Changeset 713 for trunk/src/nest/cells.py
- Timestamp:
- 02/17/10 22:45:18 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/nest/cells.py (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/nest/cells.py
r687 r713 5 5 """ 6 6 7 from pyNN import common, cells7 from pyNN import standardmodels, cells 8 8 9 9 class IF_curr_alpha(cells.IF_curr_alpha): … … 13 13 """ 14 14 15 translations = common.build_translations(15 translations = standardmodels.build_translations( 16 16 ('v_rest', 'E_L'), 17 17 ('v_reset', 'V_reset'), … … 35 35 """ 36 36 37 translations = common.build_translations(37 translations = standardmodels.build_translations( 38 38 ('v_rest', 'E_L'), 39 39 ('v_reset', 'V_reset'), … … 56 56 """ 57 57 58 translations = common.build_translations(58 translations = standardmodels.build_translations( 59 59 ('v_rest', 'E_L') , 60 60 ('v_reset', 'V_reset'), … … 79 79 """ 80 80 81 translations = common.build_translations(81 translations = standardmodels.build_translations( 82 82 ('v_rest', 'E_L') , 83 83 ('v_reset', 'V_reset'), … … 107 107 See also: EIF_cond_alpha_isfa_ista 108 108 """ 109 translations = common.build_translations(109 translations = standardmodels.build_translations( 110 110 ('v_rest', 'E_L'), 111 111 ('v_reset', 'V_reset'), … … 139 139 # in 'iaf_cond_exp_sfa_rr', the dimension of C_m is pF, 140 140 # while in the pyNN context, cm is given in nF 141 translations = common.build_translations(141 translations = standardmodels.build_translations( 142 142 ('v_reset', 'V_reset'), 143 143 ('v_rest', 'E_L'), … … 162 162 """Single-compartment Hodgkin-Huxley model.""" 163 163 164 translations = common.build_translations(164 translations = standardmodels.build_translations( 165 165 ('gbar_Na', 'g_Na'), 166 166 ('gbar_K', 'g_K'), … … 192 192 """ 193 193 194 translations = common.build_translations(194 translations = standardmodels.build_translations( 195 195 ('v_init' , 'v_init'), 196 196 ('w_init' , 'w', 1000.0), # nA -> pA … … 218 218 """Spike source, generating spikes according to a Poisson process.""" 219 219 220 translations = common.build_translations(220 translations = standardmodels.build_translations( 221 221 ('rate', 'rate'), 222 222 ('start', 'start'), … … 240 240 """ 241 241 242 translations = common.build_translations(242 translations = standardmodels.build_translations( 243 243 ('a', 'a'), 244 244 ('b', 'b'), … … 259 259 """Spike source generating spikes at the times given in the spike_times array.""" 260 260 261 translations = common.build_translations(261 translations = standardmodels.build_translations( 262 262 ('spike_times', 'spike_times'), 263 263 )
