Skip to content
Snippets Groups Projects
Unverified Commit b6e60b1e authored by Thorsten Hater's avatar Thorsten Hater Committed by GitHub
Browse files

Polish GJ example readme (#1726)

parent adc7f8b0
No related branches found
No related tags found
No related merge requests found
...@@ -315,7 +315,7 @@ arb::cable_cell gj_cell(cell_gid_type gid, unsigned ncell, double stim_duration) ...@@ -315,7 +315,7 @@ arb::cable_cell gj_cell(cell_gid_type gid, unsigned ncell, double stim_duration)
decor.place(arb::mlocation{0, 1}, arb::gap_junction_site{}, "local_0"); decor.place(arb::mlocation{0, 1}, arb::gap_junction_site{}, "local_0");
decor.place(arb::mlocation{0, 1}, arb::gap_junction_site{}, "local_1"); decor.place(arb::mlocation{0, 1}, arb::gap_junction_site{}, "local_1");
// Attach a stimulus to the second cell. // Attach a stimulus to the first cell of the first group
if (!gid) { if (!gid) {
auto stim = arb::i_clamp::box(0, stim_duration, 0.4); auto stim = arb::i_clamp::box(0, stim_duration, 0.4);
decor.place(arb::mlocation{0, 0.5}, stim, "stim"); decor.place(arb::mlocation{0, 0.5}, stim, "stim");
......
# Gap Junctions Example # Gap Junctions Example
A miniapp that demonstrates how to build a network with gap junctions.
A miniapp that demonstrates how to describe how to build a network with gap junctions. ## Cells
Cells have a simple ball-and-stick morphology with gap junctions attached at the
end of the soma. The following mechanisms are assigned to the complete cell
##Structure: - `nax`: `gbar=0.04`, `sh=10`
Cells are structured into groups that are inter-connected by gap junctions; Groups are - `gbar`: `gbar=0.0001`
connected by synapses. The first cell of the first group (top left in diagram) has a - `kamt`: `gbar=0.004`
current stimulus. - `pas`: `e=-65 mV`, `g=1/12000`
```
Soma (A=500π µm^2)
/\\\\\\\
( ))))))) ()=================) Dendrite (l=300 µm, r=1.5 µm)
\///////
*
GJ
```
## Network
Cells are structured into groups ('cables') that are inter-connected by gap
junctions; Groups are connected by synapses. The first cell of the first group
(top left in diagram) has a current stimulus.
``` ```
c --gj-- c --gj-- c --gj-- c --gj-- c c --gj-- c --gj-- c --gj-- c --gj-- c # Cable 0
| ^ |
syn I_s syn
| |
c --gj-- c --gj-- c --gj-- c --gj-- c c --gj-- c --gj-- c --gj-- c --gj-- c # Cable 1
| |
syn syn
| |
c --gj-- c --gj-- c --gj-- c --gj-- c c --gj-- c --gj-- c --gj-- c --gj-- c # Cable 2
|
...
``` ```
## Tunable parameters ## Tunable parameters
* _n_cables_: number of groups of cells connected by gap junctions. * _n_cables_: number of groups of cells connected by gap junctions.
* _n_cells_per_cable_: number of cells in a group. * _n_cells_per_cable_: number of cells in a group.
...@@ -42,4 +60,4 @@ An example parameter file is: ...@@ -42,4 +60,4 @@ An example parameter file is:
"sim-duration": 100, "sim-duration": 100,
"print-all": false "print-all": false
} }
``` ```
\ No newline at end of file
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment