Files
organism/elements/neuron/d-branch.md
T

158 lines
2.6 KiB
Markdown
Raw Normal View History

2026-06-01 00:38:44 +02:00
---
include_toc: true
---
2026-05-20 17:15:48 +02:00
# d-branch.md
2026-03-08 10:01:18 +01:00
2026-03-07 12:26:39 +01:00
Qui comprendiamo:
2026-03-08 10:01:18 +01:00
2026-05-20 17:15:48 +02:00
- D-BRANCH: Dendritic Branch
2026-03-07 12:26:39 +01:00
2026-06-01 00:38:44 +02:00
## D-BRANCH
2026-03-08 10:01:18 +01:00
**Simplified behaviors**:
2026-04-02 12:14:56 +02:00
— ms:
2026-04-08 18:28:34 +02:00
- Each active spine contributes VPost (EPSP) to VDB
- VDB decays passively each ms
2026-04-06 16:56:51 +02:00
— secs:
2026-04-03 16:33:48 +02:00
2026-04-06 11:08:26 +02:00
- nothing in the simplified model
2026-04-03 16:33:48 +02:00
— mins:
2026-04-03 16:33:48 +02:00
2026-04-06 15:44:09 +02:00
- nothing in the simplified model
2026-04-08 18:28:34 +02:00
(structural remodelling of spine neck geometry under LTP/LTD would live here if added later)
2026-04-03 16:33:48 +02:00
2026-04-02 12:18:36 +02:00
---
2026-06-01 00:38:44 +02:00
Intro:
- is expanded by: [NEURON](neuron.md)
- expands: [POSTSYNAPSE](posynapse.md)
2026-04-02 12:18:36 +02:00
2026-03-07 12:26:39 +01:00
```Gen
2026-06-01 00:38:44 +02:00
D-BRANCH
type: comprehension
2026-04-03 16:56:57 +02:00
2026-06-01 00:38:44 +02:00
include: posynapse.md
2026-04-06 16:27:17 +02:00
expansion:
2026-06-01 00:38:44 +02:00
_@postsynapse: TUB [ comprehension: POSTSYNAPSE, full: 50x, active: 0x, empty: 10x ]
intrication:
# Scope
!DAY: INTRICATION [ ref: &ORGANISM.!DAY ]
!NIGHT: INTRICATION [ ref: &ORGANISM.!NIGHT ]
# Context
*VPostMax: CONTEXT []
*VPostMedium: CONTEXT []
*VPostLow: CONTEXT []
2026-04-06 16:27:17 +02:00
2026-06-01 00:38:44 +02:00
# Tub
_VDB: INTRICATION [ ref: &SOMA._VDB )
2026-04-06 16:27:17 +02:00
2026-06-01 00:38:44 +02:00
instantiation:
# Tub
_VPost: TUB [ full: 50x, active: 0x, empty: 10x ]
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
# Behaviour
$: BEHAVIOUR [ behaviour: MAIN_DBRANCH ]
2026-04-06 16:56:51 +02:00
```
2026-04-08 12:04:49 +02:00
---
**Tubs:**
2026-04-08 18:28:34 +02:00
- **VPost**: e' l'integrazione degli EPSP della postsinapse
2026-04-08 12:04:49 +02:00
---
2026-06-01 00:38:44 +02:00
### MAIN_DBRANCH: !DAY
2026-04-06 16:56:51 +02:00
```Gen
2026-06-01 00:38:44 +02:00
MAIN_DBRANCH
type: behaviour
within_scope: !DAY
snippet:
# *Fixed
@: CONTEXTOR [ snippet: CheckVPost, rf: active 60x ]
@: ACCUMULATOR [ snippet: VDBClearance, rf: active 2x ]
# *VPostMax
@: ACCUMULATOR [ snippet: VDBMax, rf: active 2x ]
# *VPostMedium
@: ACCUMULATOR [ snippet: VDBMed, rf: active 4x ]
# *VPostLow
@: ACCUMULATOR [ snippet: VDBMin, rf: active 8x ]
```
#### *Fixed
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
##### CheckVPost
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
Contestualizziamo in maniera Fixed?
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
```Gen
CheckVPost
type: contextor
in_context: *Fixed
condition: _VPost fullness
out_context: *VPostMax
condition: _VPost mediumness
out_context: *VPostMedium
condition: _VPost emptiness
out_context: *VPostLow
2026-04-06 16:27:17 +02:00
```
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
##### VDBClearance
Qui facciamo il clearance del VDB. Lo facciamo in questo modo perche' abbiamo semplificato quello che succede fra BD e SOMA.
Qui posso aggiungere il flush, clearance veloce quando c'e' il bAP.
2026-04-06 16:56:51 +02:00
```Gen
2026-06-01 00:38:44 +02:00
VDBClearance
in_context: *Fixed
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
hypothesis: NOT _VDB empty
action: [ _VDB decrease ]
trace:
2026-04-06 16:56:51 +02:00
```
2026-06-01 00:38:44 +02:00
#### *VPostMax
##### VDBMax
2026-04-06 16:56:51 +02:00
```Gen
2026-06-01 00:38:44 +02:00
VDBMax
in_context: *VPostMax
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
hypothesis: NOT _VDB full
action: [ _VDB increase ]
trace:
2026-04-06 16:56:51 +02:00
```
2026-06-01 00:38:44 +02:00
#### *VPostMedium
##### VDBMed
2026-04-06 16:56:51 +02:00
```Gen
2026-06-01 00:38:44 +02:00
VDBMed
in_context: *VPostMedium
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
hypothesis: NOT _VDB full
action: [ _VDB increase ]
trace:
2026-04-06 16:56:51 +02:00
```
2026-06-01 00:38:44 +02:00
#### *VPostLow
##### VDBLow
2026-04-08 18:28:34 +02:00
2026-04-06 16:56:51 +02:00
```Gen
2026-06-01 00:38:44 +02:00
in_context: *VPostLow
2026-04-06 16:56:51 +02:00
2026-06-01 00:38:44 +02:00
hypothesis: NOT _VDB full
action: [ _VDB increase ]
trace:
2026-04-07 17:41:08 +02:00
```