Files
organism/neuron/BEH-BD.md
T

110 lines
5.2 KiB
Markdown

# BEH-BD.md
Qui comprendiamo:
- BEH-BD: Dendritic Branch
## BEH-BD: Container
**Dendritic Branch**: In questa prima fase, non consideriamo lo spike dendritico come comportamento. Questo limita molto il modello, perche' equipara tutte le Postsinapsi sui tre branch dendritici e non permette di fare in maniera che ad esempio due branch contestualizzino (base activity) e uno faccia scattare il threshold per lo spike somatico.
Qui BEH-DB espande solo i BEH-POST, e' un cavo di collegamento come l'assone
**Discursive description**:
The dendrite is the receiving arm of a neuron — a long branching extension of the cell body whose job is to collect the electrical signals generated by postsynaptic spines and route their sum toward the soma, where the decision to fire is made. In this model we consider a single dendritic branch: a passive cable connecting a set of postsynaptic spines at one end to the soma at the other.
Each spine sits along the branch and generates a small electrical signal — an excitatory postsynaptic potential, or EPSP — whenever its AMPA receptors are activated by NT from the presynapse. This EPSP spreads from the spine head through the spine neck and into the dendrite shaft, where it becomes part of a shared electrical pool. The dendrite does not process each spine's signal independently — it sums them. Two spines firing close together in time produce a larger combined depolarisation than either alone. Enough spines firing close enough together can push the dendritic potential high enough to reach the soma and trigger an action potential.
The dendrite does this passively. Unlike the presynapse, which actively pumps calcium and recycles vesicles, the dendrite shaft in this model is a cable — it conducts and attenuates electrical signals according to its physical properties, with no active amplification. The key property is the membrane time constant: how long a voltage change persists before decaying back to rest. A long time constant means EPSPs last longer and are more likely to summate with the next arriving EPSP. A short time constant means only very closely timed inputs summate effectively.
The dendrite also carries the return signal. When the soma fires, a back-propagating action potential (bAP) travels from the soma back down the dendrite to every spine. In this model the bAP arrives at all spines at full amplitude — no distance-dependent attenuation. This bAP is the postsynaptic side of the coincidence gate: it tells every spine simultaneously that the neuron just fired, enabling NMDA opening in any spine that also has NT in its cleft at that moment. Without the bAP, spines can generate V_post from AMPA alone but cannot achieve the full coincidence required for LTP.
The dendrite therefore runs two interlocking loops. The summation loop collects spine EPSPs every millisecond and maintains a running dendritic potential V_dend. The bAP loop receives the external firing signal and distributes it back to all spines as the V_bAP input that the postsynaptic model reads. Together these two loops make the dendrite the spatial and temporal integrator of the synapse — it is where individual spine signals become a collective decision, and where the outcome of that decision is fed back to the very spines that contributed to it.
---
**Behaviors**:
— ms:
- Each active spine contributes an EPSP to V_dend
EPSP_i = g_AMPA_i * AMPA_weight
where AMPA_weight is the conductance per unit receptor_conductance
All spine EPSPs summate linearly in the dendrite shaft
- V_dend decays passively each ms
V_dend *= (1 - dt / tau_dend)
tau_dend is the membrane time constant of the dendritic branch
- V_dend is passed to the soma each ms (soma reads it externally)
- bAP arrives when soma_spike_train fires at this timestep
V_bAP = V_bAP_peak (uniform across all spines, no attenuation)
V_bAP decays each ms with tau_bAP
- V_bAP is broadcast to all spines as a shared variable
each spine reads V_bAP in its NMDA coincidence calculation
— seconds:
- nothing — the dendrite has no slow integration process
in the passive single-branch model
— mins:
- nothing — the dendrite has no metabolic loop
in the simplified model
(structural remodelling of spine neck geometry under LTP/LTD
would live here if added later)
---
**Simplified comprehension**:
In this model the dendrite is already at its simplest meaningful form given the four choices. No further simplifications are applied. The only two active processes are:
- Linear summation of spine EPSPs into V_dend each ms
- Uniform bAP distribution to all spines on soma firing
---
**Simplified behaviors**:
— ms:
- Collect EPSPs from all active spines
V_dend += sum(EPSP_i for each spine i)
- V_dend decays passively
V_dend *= (1 - dt / tau_dend)
- If soma fires this ms (step in soma_spike_train):
V_bAP = V_bAP_peak
- V_bAP decays each ms
V_bAP += (0 - V_bAP) * dt / tau_bAP
- V_dend and V_bAP are available to all spines and the soma
— seconds:
- nothing
— mins:
- nothing
---
```Gen
Container: BEH-BD
include:
BEH-POST.md
expansion:
- BEH-POST ( full: 50x, active: 0x, empty: 10x )
# managed_by: BEH-EXH or BEH-INH from winnertakeall
# developed_by: DEV-BD-BEH-POST-TUB from DEV-N
```