Changeset 345
- Timestamp:
- 06/05/08 18:01:40 (6 months ago)
- Files:
-
- branches/0.4/MANIFEST.in (modified) (1 diff)
- branches/0.4/doc/dynamicsynapses.txt (modified) (1 diff)
- branches/0.4/doc/installation.txt (modified) (2 diffs)
- branches/0.4/doc/standardmodels.txt (modified) (2 diffs)
- branches/0.4/setup.py (modified) (1 diff)
- branches/0.4/src/__init__.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/0.4/MANIFEST.in
r249 r345 8 8 include test/small_network.py 9 9 include doc/*.txt 10 include COPYING 11 include changelog 10 12 branches/0.4/doc/dynamicsynapses.txt
r331 r345 31 31 To set the model of synapse dynamics to use for the connections of a given 32 32 ``Projection``, we pass a ``SynapseDynamics`` object as the ``synapse_dynamics`` 33 keyword argument to the ``Projection`` constructor.33 keyword argument to the ``Projection`` constructor. 34 34 35 35 The ``SynapseDynamics`` object is simply a container that has attributes ``fast``, branches/0.4/doc/installation.txt
r323 r345 123 123 124 124 >>> from pyNN.neuron import * 125 NEURON -- Release 5.9.9 (1529) 2006-09-11126 by John W. Moore, Michael Hines, and Ted Carnevale127 Duke and Yale University -- Copyright 1984-2006125 NEURON -- Release 6.1.1 (1894) 2007-11-24 126 Duke, Yale, and the BlueBrain Project -- Copyright 1984-2007 127 See http://www.neuron.yale.edu/credits.html 128 128 129 129 >>> setup() … … 135 135 If your model relies on other NMODL mechanisms, call the `load_mechanisms()` function with the path to the directory containing the ``.mod`` files. 136 136 137 .. _PyNN: http://neuralensemble. kip.uni-heidelberg.de/trac/PyNN137 .. _PyNN: http://neuralensemble.org/trac/PyNN 138 138 .. _numpy: http://numpy.scipy.org/ 139 139 .. _PCSIM: http://sourceforge.net/projects/pcsim/ branches/0.4/doc/standardmodels.txt
r251 r345 8 8 To obtain a list of all the standard models available in a given simulator, use the ``list_standard_models()`` function, e.g.:: 9 9 10 >>> from pyNN import nest2, neuron 11 >>> nest2.list_standard_models() 12 [] 10 >>> from pyNN import neuron 13 11 >>> neuron.list_standard_models() 14 [ ]12 [<class 'pyNN.neuron.cells.IF_cond_alpha'>, <class 'pyNN.neuron.cells.IF_curr_exp'>, <class 'pyNN.neuron.cells.SpikeSourceArray'>, <class 'pyNN.neuron.cells.IF_cond_exp'>, <class 'pyNN.neuron.cells.IF_facets_hardware1'>, <class 'pyNN.neuron.cells.SpikeSourcePoisson'>, <class 'pyNN.neuron.cells.EIF_cond_alpha_isfa_ista'>, <class 'pyNN.neuron.cells.IF_curr_alpha'>] 15 13 16 14 Integrate-and-fire neurons … … 101 99 ``cm`` 1.0 nF Capacity of the membrane 102 100 ``tau_m`` 20.0 ms Membrane time constant 103 ``tau_refrac 0.0 ms Duration of refractory period104 ``tau_syn_E` 5.0 ms Decay time of the excitatory synaptic conductance105 ``tau_syn_I` 5.0 ms Decay time of the inhibitory synaptic conductance101 ``tau_refrac`` 0.0 ms Duration of refractory period 102 ``tau_syn_E`` 5.0 ms Decay time of the excitatory synaptic conductance 103 ``tau_syn_I`` 5.0 ms Decay time of the inhibitory synaptic conductance 106 104 ``e_rev_E`` 0.0 mV Reversal potential for excitatory input 107 105 ``e_rev_I`` -70.0 mV Reversal potential for inhibitory input branches/0.4/setup.py
r314 r345 41 41 setup( 42 42 name = "PyNN", 43 version = "0.4.0 alpha",43 version = "0.4.0", 44 44 package_dir={'pyNN': 'src'}, 45 packages = ['pyNN','pyNN.nest2','pyNN.nest1','pyNN.pcsim','pyNN.neuron' ,'pyNN.brian'],45 packages = ['pyNN','pyNN.nest2','pyNN.nest1','pyNN.pcsim','pyNN.neuron'], 46 46 package_data = {'pyNN': ['hoc/*.hoc', 'hoc/*.mod']}, 47 47 author = "The NeuralEnsemble Community", branches/0.4/src/__init__.py
r305 r345 1 __version__ = '0.4 alpha( $Revision$)'.replace(' $','')1 __version__ = '0.4 ( $Revision$)'.replace(' $','') 2 2 __all__ = ["common", "random", "nest1", "nest2", "neuron", "pcsim" ]

