Files
organism/elements/astrocyte/appunti/2026-06-02-astrocyte-behaviors.md
T

63 lines
4.1 KiB
Markdown
Raw Normal View History

2026-06-02 16:05:34 +02:00
To clear things up completely, I have actually highlighted **three distinct operational modes** driven by synaptic activity.
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
They are categorized by the **intensity and pattern** of the firing, which dictates whether the astrocytic response stays localized or goes global.
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
Here is the explicit breakdown of all three modes so you can map them clearly in your code.
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
---
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
## Mode 1: Low-to-Moderate Baseline Firing (Local / Housekeeping)
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
* **The Trigger:** Standard, low-frequency background neuronal activity ($\sim$ 110 Hz).
* **Spatial Scale:** Strictly **Local Microdomains** (the tiny leaf-like processes wrapping the individual synapse).
* **The Behavior:** The astrocyte acts as a localized cleaner and stabilizer. It vacuums up glutamate (preventing signal blur) and siphons away excess potassium ($K^+$).
* **Model State:** Synaptic weights ($W$) remain stable; the system is maintaining its baseline equilibrium.
2026-06-02 13:49:59 +02:00
---
2026-06-02 16:05:34 +02:00
## Mode 2: High-Frequency / Burst Firing (Local / Learning Gate)
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
* **The Trigger:** High-frequency, pattern-specific bursts (e.g., 50100 Hz bursts used in learning protocols).
* **Spatial Scale:** Still **Local Microdomains**, but with a much higher concentration of calcium ($Ca^{2+}_{\text{micro}}$) restricted to that specific active synapse.
* **The Behavior:** This is the **Standard Plasticity Mode**. The localized calcium surge triggers the release of **D-serine** into that specific cleft, unlocking postsynaptic NMDA receptors.
* **Model State:** This triggers **Short-Term Facilitation (STP)** or gates the induction of **Long-Term Potentiation (LTP)** for that single, specific synapse.
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
---
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
## Mode 3: Massive Synchronous / Network-Wide Firing (Global / Emergency Alert)
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
* **The Trigger:** Intense, multi-synapse, or hyper-synchronous firing (e.g., epileptic-like activity, severe sensory overload, or intense stress).
* **Spatial Scale:** **Astrocyte-Wide / Global**. The individual local calcium signals spill over, cross-talk, and trigger a full **Global Calcium Wave ($Ca^{2+}_{\text{soma}}$)** across the entire cell.
* **The Behavior:** This flips the system into the **Opposite Mode**. To manage the crisis, the whole astrocyte dumps **Glutamate** to facilitate the presynapse (ensuring the urgent signal cuts through) while simultaneously dumping **GABA or ATP** to depress the postsynapse (acting as a circuit-breaker to protect the neurons from melting down).
* **Model State:** This drives network-wide **Short-Term Depression (STD)** at the postsynapse to force a temporary system reset.
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
---
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
## Mode 4 (The Slow Appendix): Chronic Over- or Under-Excitation (Global / Homeostatic Scaling)
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
*This is the slow-acting extension of the states above, operating over hours or days rather than seconds.*
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
* **The Trigger:** If Mode 1 or Mode 3 persists uninterrupted for hours or days (e.g., a limb is immobilized, causing chronic under-excitation, or a brain region suffers chronic stroke/epilepsy, causing chronic over-excitation).
* **Spatial Scale:** **Astrocyte-Wide / Global**.
* **The Behavior:** The astrocyte physically remodels the tissue. It secretes structural factors (like **TNF-$\alpha$** or **Thrombospondins**) to either systematically strip away or globally add AMPA receptors across thousands of synapses.
* **Model State:** **Homeostatic Synaptic Scaling (LTP/LTD consolidation)**. It multiplies *all* local synaptic weights by a global scaling factor to pull the entire network's baseline firing rate back into a safe, functional zone.
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
---
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
### The Input Gating Architecture for Your Model
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
When building your simulation, your input variable (Neuronal Activity) feeds into a nested logic structure:
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
```
IF Activity == Low-to-Moderate (1-10 Hz)
──> Engage MODE 1 (Local Housekeeping)
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
IF Activity == High-Frequency Bursts (50-100 Hz, single pathway)
──> Engage MODE 2 (Standard Plasticity: Local D-Serine / LTP Gate)
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
IF Activity == Massive/Synchronous (>100 Hz, multi-pathway)
──> Engage MODE 3 (Opposite Behavior: Global Wave / Pre-Boost / Post-Drop)
2026-06-02 13:49:59 +02:00
2026-06-02 16:05:34 +02:00
└─► IF MODE 1 or MODE 3 persists for hours/days
──> Engage MODE 4 (Global Structural Homeostatic Scaling)