PRESYNAPSE_Status: check_tpc

This commit is contained in:
2026-04-21 11:52:09 +02:00
parent be83ea0a09
commit 42bff1a1a3
+18 -31
View File
@@ -27,7 +27,7 @@ container: AXON
**— ms:**
- AP fires → VGCCs open, Ca²⁺ enters
- AP fires → VGCCs open, Ca²⁺ enters, based on eCB e mGluR
- Ca²⁺ cleared slowly (single decay term, no pump detail)
- Ca²⁺ trace (Tr_Ca) integrates every ms
- NT released into cleft — rate determined by Ca²⁺ level and NT already in cleft
@@ -100,7 +100,7 @@ container: PRESYNAPSE
### ms: behaviors
#### AP-RRPConcentration: check_tpc
#### PRESYNAPSE_Status: check_tpc
Il rilascio di NT lo facciamo nel contesto di AP. Biologicamente dovrebbe avvenire solo in base alle concentrazioni, quindi anche al difuori degli AP.
@@ -108,36 +108,26 @@ RF deve essere MOLTO piu' basso della durata di un AP. In maniera da essere atti
Questo poi per permettere la diversa contestualizzazione degli episodi di NTrelease, a piu' o meno alta velocita'.
![nt-release.png](.attachments/nt-release.png)
```Gen
check_tpc: AP-RRPConcentration
check_tpc: PRESYNAPSE_Status
contained_by: PRESYNAPSE
in_context: AP
rf: ( active: 60x )
condition: (Rrp mediumness)
out_context: RRPmediumness
condition: ( Ca2+ full ) AND ( Rrp fullness )
out_context: NTreleaseMax_ctx
condition: (Rrp fullness)
out_context: RRPFull
```
condition: ( Ca2+ fullness ) AND ( Rrp fullness )
out_context: NTreleaseHigh_ctx
#### AP-Ca2+Concentration: check_tpc
condition: (( Ca2+ fullness ) AND ( Rrp mediumness )) OR (( Ca2+ mediumness ) AND ( Rrp fullness ))
out_context: NTreleaseMed_ctx
Qui controlliamo la concentrazione nel contesto di un AP.
```Gen
check_tpc: AP-Ca2+Concentration
contained_by: PRESYNAPSE
in_context: AP
rf: ( active: 60x )
condition: (Ca2+ mediumness)
out_context: Ca2+mediumness
condition: (Ca2+ fullness)
out_context: Ca2+Full
condition: ( Ca2+ mediumness ) AND ( Rrp mediumness )
out_context: NTreleaseLow_ctx
```
#### NTrelease
@@ -146,8 +136,6 @@ Non consideriamo le vesicles come liberate, ma direttamente gli NT. Questo perme
Ci sono 4 casi che dipendono da RRP, Ca2+ e NT. L'idea e' che la quantita' di RRP sia il driver principale. Gli NT liberati sono di piu' al crescere di RRP e Ca2+ e di meno al crescere di NT. Gli NT nella sinapsi fanno da moderazione alla ulteriore liberazione di NT, ma non bloccano mai totalmente. NT suppression only matters when everything else is already at maximum — which is exactly the biological purpose: it prevents runaway release during peak activity, not during moderate activity.
![nt-release.png](.attachments/nt-release.png)
##### NTreleaseMaximum: interacting
NT empty
@@ -156,7 +144,7 @@ NT empty
interacting: NTreleaseMaximum
contained_by: PRESYNAPSE
in_context: (Ca2+Full AND RRPFull)
in_context: NTreleaseMax_ctx
rf: ( active: 3x ) # Maximum
hypothesis: NOT (NT empty)
@@ -172,7 +160,7 @@ Solo in questo caso NT modera! NT NOT empty
interacting: NTreleaseHigh
contained_by: PRESYNAPSE
in_context: (Ca2+Full AND RRPFull)
in_context: NTreleaseHigh_ctx
rf: ( active: 6x ) # High
hypothesis: NOT (NT empty)
@@ -188,7 +176,7 @@ In tutti i casi di NT
interacting: NTreleaseMediumness
contained_by: PRESYNAPSE
in_context: (Ca2+Full AND RRPMediumness) OR (Ca2+Mediumness AND RRPFull)
in_context: NTreleaseMed_ctx
rf: ( active: 9x ) # Mediumness
hypothesis: (NT empty) OR NOT (NT empty)
@@ -204,8 +192,7 @@ In tutti i casi di NT
interacting: NTreleaseLow
contained_by: PRESYNAPSE
in_context: (Ca2+Mediumness AND RRPMediumness)
rf: ( active: 12x ) # Low
in_context: NTreleaseLow_ctx
hypothesis: (NT empty) OR NOT (NT empty)
action: [Rrp decrease, Nt increase, ATP decrease]
@@ -551,7 +538,7 @@ Qui sostituiamo:
- CDI con concentrazione Ca2+
-- CDI is calcium-dependent inactivation of VGCCs. The inactivation happens because Ca²⁺ enters through the channel and binds to a calmodulin tethered to the channel's intracellular face, physically blocking it from reopening. This is a local, channel-specific event — it requires Ca²⁺ to be flowing through that channel right now, not residual Ca²⁺ drifting in the cytosol between spikes.
-- The recovery, by contrast, should run every millisecond unconditionally — CDI de-inactivation is a continuous process that proceeds whenever Ca²⁺ dissociates from calmodulin, which depends on the ambient Ca_micro level at all times.
- mGluR con concentrazione NT (forse su tempi di sec e quindi avremmo bisono di un altro Tub)
- mGluR con concentrazione NT (forse su tempi di sec e quindi avremmo bisogno di un altro Tub)
- **Open** — zero active brakes. mGluR alone never escapes this group because its ceiling is alpha_mGluR = 0.4, meaning even at full it only removes 40% of conductance, leaving 60% — still above the 85% threshold. So mGluR is irrelevant to the open/not-open boundary. Only CDI and eCB decide.
- **Reduced/partial** — exactly one meaningful brake active. Either CDI has started building (mediumness), or eCB has risen from sustained postsynaptic activity, but not both simultaneously. The system is aware something is happening but has not compounded yet. This is the normal operating range during moderate sustained firing.