Initial commit
Co-authored-by: Aradhana Dube <a.dube@rug.nl> Co-authored-by: Renzo I. Barraza Altamirano <r.i.barraza.altamirano@rug.nl> Co-authored-by: Paolo Gibertini <p.gibertini@rug.nl> Co-authored-by: Luca D. Fehlings <l.d.fehlings@rug.nl>
BIN
docs-site/docs/neuron_models/fhn/IMG_20260227_161313_688.jpg
Executable file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
docs-site/docs/neuron_models/fhn/IMG_20260227_161324_112.jpg
Executable file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
docs-site/docs/neuron_models/fhn/IMG_20260227_161333_222.jpg
Executable file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
docs-site/docs/neuron_models/fhn/IMG_20260227_161350_882.jpg
Executable file
|
After Width: | Height: | Size: 1.3 MiB |
BIN
docs-site/docs/neuron_models/fhn/IMG_20260227_161401_705.jpg
Executable file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
docs-site/docs/neuron_models/fhn/IMG_20260227_161410_686.jpg
Executable file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
docs-site/docs/neuron_models/fhn/IMG_20260227_161423_789.jpg
Executable file
|
After Width: | Height: | Size: 1.4 MiB |
4
docs-site/docs/neuron_models/fhn/README.md
Normal file
@@ -0,0 +1,4 @@
|
||||
# Circuit implementing the fhn neuron.
|
||||
|
||||
- The circuits in the schematics implement the FHN neuron described.
|
||||
- The FHN neuron is an implementation of the circuit described in (Ribar, L. (2019). Synthesis of neuromorphic circuits with neuromodulatory properties [Apollo - University of Cambridge Repository]. https://doi.org/10.17863/CAM.53750). The OTA and CMFB are well known designs that can be found in textbooks.
|
||||
240
docs-site/docs/neuron_models/fhn/fhn.ipynb
Normal file
22
docs-site/docs/neuron_models/fhn/index.md
Normal file
@@ -0,0 +1,22 @@
|
||||
# FitzHugh-Nagumo
|
||||
|
||||
## Circuit equation
|
||||
|
||||
$$
|
||||
\begin{align}
|
||||
C\frac{dv}{dt} &= I_{app} - I_{passive} - I_{fast} - I_{slow} \\
|
||||
\frac{dv_{slow}}{dt} &= \frac{v - v_{slow}}{\tau_{slow}} \\
|
||||
\frac{dI_{app}}{dt} &= -\frac{I_{app}}{\tau_{syn}}
|
||||
\end{align}
|
||||
$$
|
||||
|
||||
where the currents are:
|
||||
- $I_{passive} = g_{max}(v - E_{rev})$
|
||||
- $I_{fast} = a_{fast} \tanh(v - v_{off,fast})$
|
||||
- $I_{slow} = a_{slow} \tanh(v_{slow} - v_{off,slow})$
|
||||
|
||||
## Examples
|
||||
|
||||
See the following interactive notebook for a practical example:
|
||||
|
||||
- [Basic Usage Example](fhn.ipynb) - Introduction to the FitzHugh-Nagumo model
|
||||