23#ifndef AEIF_PSC_DELTA_H
24#define AEIF_PSC_DELTA_H
32#include <gsl/gsl_errno.h>
33#include <gsl/gsl_matrix.h>
34#include <gsl/gsl_odeiv.h>
58extern "C" int aeif_psc_delta_dynamics(
double,
const double*,
double*,
void* );
178void register_aeif_psc_delta(
const std::string& name );
180class aeif_psc_delta :
public ArchivingNode
185 aeif_psc_delta(
const aeif_psc_delta& );
186 ~aeif_psc_delta()
override;
194 using Node::handles_test_event;
196 size_t send_test_event( Node&,
size_t, synindex,
bool )
override;
198 void handle( SpikeEvent& )
override;
199 void handle( CurrentEvent& )
override;
200 void handle( DataLoggingRequest& )
override;
202 size_t handles_test_event( SpikeEvent&,
size_t )
override;
203 size_t handles_test_event( CurrentEvent&,
size_t )
override;
204 size_t handles_test_event( DataLoggingRequest&,
size_t )
override;
206 void get_status(
Dictionary& )
const override;
207 void set_status(
const Dictionary& )
override;
210 void init_buffers_()
override;
211 void pre_run_hook()
override;
212 void update(
const Time&,
const long,
const long )
override;
219 friend int aeif_psc_delta_dynamics(
double,
const double*,
double*,
void* );
222 friend class RecordablesMap< aeif_psc_delta >;
223 friend class UniversalDataLogger< aeif_psc_delta >;
247 bool with_refr_input_;
267 double refr_spikes_buffer_;
283 double y_[ STATE_VEC_SIZE ];
286 State_(
const Parameters_& );
287 State_(
const State_& );
289 State_& operator=(
const State_& );
292 void set(
const Dictionary&,
const Parameters_&, Node* );
302 Buffers_( aeif_psc_delta& );
303 Buffers_(
const Buffers_&, aeif_psc_delta& );
306 UniversalDataLogger< aeif_psc_delta > logger_;
310 RingBuffer currents_;
314 gsl_odeiv_control* c_;
315 gsl_odeiv_evolve* e_;
316 gsl_odeiv_system sys_;
322 double IntegrationStep_;
347 unsigned int refractory_counts_;
359 template < State_::StateVecElems elem >
363 return S_.y_[ elem ];
374 static RecordablesMap< aeif_psc_delta > recordablesMap_;
378aeif_psc_delta::send_test_event( Node& target,
size_t receptor_type,
synindex,
bool )
381 e.set_sender( *
this );
383 return target.handles_test_event( e, receptor_type );
387aeif_psc_delta::handles_test_event( SpikeEvent&,
size_t receptor_type )
389 if ( receptor_type != 0 )
391 throw UnknownReceptorType( receptor_type, get_name() );
397aeif_psc_delta::handles_test_event( CurrentEvent&,
size_t receptor_type )
399 if ( receptor_type != 0 )
401 throw UnknownReceptorType( receptor_type, get_name() );
407aeif_psc_delta::handles_test_event( DataLoggingRequest& dlr,
size_t receptor_type )
409 if ( receptor_type != 0 )
411 throw UnknownReceptorType( receptor_type, get_name() );
413 return B_.logger_.connect_logging_device( dlr, recordablesMap_ );
417aeif_psc_delta::get_status(
Dictionary& d )
const
427aeif_psc_delta::set_status(
const Dictionary& d )
429 Parameters_ ptmp = P_;
432 stmp.set( d, ptmp,
this );
Dictionary class for interface to Python and C++ API.
Definition dictionary.h:213
void get_status(Dictionary &d) const override
Export properties of the node by setting entries in the status dictionary.
Definition archiving_node.cpp:220
void set_status(const Dictionary &d) override
Change properties of the node according to the entries in the dictionary.
Definition archiving_node.cpp:236
const std::string E_L("E_L")
const std::string I_e("I_e")
const std::string recordables("recordables")
const std::string C_m("C_m")
const std::string gsl_error_tol("gsl_error_tol")
const std::string V_th("V_th")
const std::string target("target")
const std::string tau_w("tau_w")
const std::string Delta_T("Delta_T")
const std::string g_L("g_L")
Namespace for the NEST simulation kernel.
Definition beta_normalization_factor.h:33
size_t synindex
For enumerations of synapse types.
Definition nest_types.h:115
const double e
Definition numerics.cpp:32