-
Notifications
You must be signed in to change notification settings - Fork 0
/
Device_t.h
216 lines (176 loc) · 6.68 KB
/
Device_t.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
//------------------------------------------------------------------------------
#ifndef __Device_t__H
#define __Device_t__H
#include "event_t.h"
#include "flat.h"
#include <string>
#include <utility>
#include <vector>
#include <list>
#include <algorithm>
using namespace std;
class Circuit_t;
//==============================================================================
class Device_t
{
public:
Device_t();
Device_t(string &);
virtual ~ Device_t() { }
virtual void Dump();
virtual void Elaborate() { }
virtual Event_t * Get1() { return 0; }
void SetParam(string & s) { sParam = s; }
void Name(string & s) { name = s; }
string Name() { return name; }
static void ND_cb(Device_t * const &);
static void NK_cb(string const &);
virtual void OnImpulse(Event_t *) { }
virtual void OnTick(Event_t *) { }
virtual void OutAns(string &) { }
string sParam;
string name;
static Circuit_t * par;
bool fmon; // Data to be saved?
static const unsigned eType = 0; // Device type
};
//==============================================================================
class C_neuron : public Device_t
{
public:
C_neuron(string,string=string());
virtual ~ C_neuron();
virtual void Dump();
virtual void Elaborate();
virtual void OnImpulse(Event_t *);
void OnI_1(Event_t *);
void OnI_2(Event_t *);
void OnI_C(Event_t *);
void OnI_T(Event_t *);
virtual void OnTick(Event_t *);
void OutAns(string &);
void Save(EvTime_t,double,double,EvTime_t);
double S; // Integrand
EvTime_t Tr; // Refractory period left to go
EvTime_t Lnt; // Last notified time
static const unsigned eType = 3; // Device type
unsigned p_model; // Internal model identifier
double p_h; // Event height
double p_thresh; // Fire threshold
EvTime_t p_refrac; // Length of refractory period
double p_leak; // Geometic integrator leak factor
EvTime_t p_delay; // Neuron output delay
struct Hist_t { // History structure
friend struct lt_Hist_t;
Hist_t(EvTime_t,double,double,EvTime_t);
void OutAns(FILE *);
EvTime_t t; // Sim time it happened
double h; // Size of OUTGOING tonker
double S; // Consequential internal integrand
EvTime_t Tr; // Consequential refractory time to go
};
vector<Hist_t> vHist; // ... and this is where they live
//........... For temperature device
map<void *,unsigned> gh;
bool ftf;
};
//==============================================================================
class C_source : public Device_t
{
public:
C_source(string,string=string());
virtual ~ C_source();
virtual void Dump();
virtual void Elaborate();
virtual Event_t * Get1();
virtual void OnImpulse(Event_t *);
void OutAns(string &);
void Save(EvTime_t,double,unsigned,unsigned);
EvTime_t cur_t; // Last notified time
double p_h; // Event height
EvTime_t t_start; // Start offset
EvTime_t t_minor; // Minor period
unsigned n_minor; // Minor event count
EvTime_t t_major; // Major period
unsigned n_major; // Major event count
static const unsigned eType = 1; // Device type
private:
unsigned c_minor; // Minor loop count
unsigned c_major; // Major loop count
struct Hist_t {
Hist_t(EvTime_t,double,unsigned,unsigned);
void OutAns(FILE *);
EvTime_t t;
double h;
unsigned c_min;
unsigned c_maj;
};
vector<Hist_t> vHist;
};
//==============================================================================
class C_sink : public Device_t
{
public:
C_sink(string,string=string());
virtual ~ C_sink();
virtual void Dump();
virtual void Elaborate();
virtual Event_t * Get1();
virtual void OnImpulse(Event_t *);
void OutAns(string &);
void Save(EvTime_t,double);
EvTime_t Lnt; // Last notified time
double S; // Integrand
double p_thresh; // Fire threshold
double p_leak; // Geometic integrator leak factor
static const unsigned eType = 4; // Device type
struct Hist_t { // History structure
friend struct lt_Hist_t;
Hist_t(EvTime_t,double);
void OutAns(FILE *);
EvTime_t t; // Sim time it happened
double S; // Consequential internal integrand
};
vector<Hist_t> vHist; // ... and this is where they live
};
//==============================================================================
class C_clock : public Device_t
{
public:
C_clock(string,string=string());
virtual ~ C_clock();
virtual void Dump();
virtual void Elaborate();
virtual Event_t * Get1();
virtual void OnTick(Event_t *);
void OutAns(string &);
void Save(EvTime_t,double);
double p_h; // Event height
EvTime_t now; // Time now
EvTime_t p_tstart; // Start offset
EvTime_t p_tick; // Tick length
static const unsigned eType = 2; // Device type
struct Hist_t {
Hist_t(EvTime_t,double);
void OutAns(FILE *);
EvTime_t t;
double h;
};
vector<Hist_t> vHist;
};
//==============================================================================
class C_link : public Device_t
{
public:
C_link(string &){}
virtual ~ C_link(){}
};
//==============================================================================
class C_pin
{
public:
C_pin(string &){}
virtual ~ C_pin(){}
};
//==============================================================================
#endif