63 lines
4.1 KiB
Markdown
63 lines
4.1 KiB
Markdown
To clear things up completely, I have actually highlighted **three distinct operational modes** driven by synaptic activity.
|
||
|
||
They are categorized by the **intensity and pattern** of the firing, which dictates whether the astrocytic response stays localized or goes global.
|
||
|
||
Here is the explicit breakdown of all three modes so you can map them clearly in your code.
|
||
|
||
---
|
||
|
||
## Mode 1: Low-to-Moderate Baseline Firing (Local / Housekeeping)
|
||
|
||
* **The Trigger:** Standard, low-frequency background neuronal activity ($\sim$ 1–10 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.
|
||
|
||
---
|
||
|
||
## Mode 2: High-Frequency / Burst Firing (Local / Learning Gate)
|
||
|
||
* **The Trigger:** High-frequency, pattern-specific bursts (e.g., 50–100 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.
|
||
|
||
---
|
||
|
||
## Mode 3: Massive Synchronous / Network-Wide Firing (Global / Emergency Alert)
|
||
|
||
* **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.
|
||
|
||
---
|
||
|
||
## Mode 4 (The Slow Appendix): Chronic Over- or Under-Excitation (Global / Homeostatic Scaling)
|
||
|
||
*This is the slow-acting extension of the states above, operating over hours or days rather than seconds.*
|
||
|
||
* **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.
|
||
|
||
---
|
||
|
||
### The Input Gating Architecture for Your Model
|
||
|
||
When building your simulation, your input variable (Neuronal Activity) feeds into a nested logic structure:
|
||
|
||
```
|
||
IF Activity == Low-to-Moderate (1-10 Hz)
|
||
──> Engage MODE 1 (Local Housekeeping)
|
||
|
||
IF Activity == High-Frequency Bursts (50-100 Hz, single pathway)
|
||
──> Engage MODE 2 (Standard Plasticity: Local D-Serine / LTP Gate)
|
||
|
||
IF Activity == Massive/Synchronous (>100 Hz, multi-pathway)
|
||
──> Engage MODE 3 (Opposite Behavior: Global Wave / Pre-Boost / Post-Drop)
|
||
|
||
└─► IF MODE 1 or MODE 3 persists for hours/days
|
||
──> Engage MODE 4 (Global Structural Homeostatic Scaling)
|