-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsynapsis.cpp
More file actions
88 lines (70 loc) · 3.11 KB
/
synapsis.cpp
File metadata and controls
88 lines (70 loc) · 3.11 KB
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
/*************************************************************
Copyright (c) 2006, Fernando Herrero Carrón
Copyright (c) 2020, Angel Lareo <angel.lareo@gmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
* Neither the name of the author nor the names of his contributors
may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*************************************************************/
#include <DifferentialNeuronWrapper.h>
#include <ElectricalSynapsis.h>
#include <HodgkinHuxleyModel.h>
#include <SystemWrapper.h>
#include <RungeKutta4.h>
#include <iostream>
typedef RungeKutta4 Integrator;
typedef DifferentialNeuronWrapper<SystemWrapper<HodgkinHuxleyModel<double>>, Integrator> HH;
typedef ElectricalSynapsis<HH, HH> Synapsis;
int main(int argc, char **argv) {
// Struct to initialize neuron model parameters
HH::ConstructorArgs args;
// Set the parameter values
args.params[HH::cm] = 1 * 7.854e-3;
args.params[HH::vna] = 50;
args.params[HH::vk] = -77;
args.params[HH::vl] = -54.387;
args.params[HH::gna] = 120 * 7.854e-3;
args.params[HH::gk] = 36 * 7.854e-3;
args.params[HH::gl] = 0.3 * 7.854e-3;
// Initialize neuron models
HH h1(args), h2(args);
// Set initial value of V in neuron n1
h1.set(HH::v, -75);
// Initialize a synapsis between the neurons
Synapsis s(h1, HH::v, h2, HH::v, -0.002, -0.002);
// Set the integration step
const double step = 0.001;
// Perform the simulation
double simulation_time = 1000;
for (double time = 0; time < simulation_time; time += step) {
s.step(step);
// Provide an external current input to both neurons
h1.add_synaptic_input(0.5);
h2.add_synaptic_input(0.5);
h1.step(step);
h2.step(step);
std::cout << time << " " << h1.get(HH::v) << " " << h2.get(HH::v)
<< " " << s.get(Synapsis::i1) << std::endl;
}
return 0;
}