From 075e1459ce077cab107250c9364ce2b868c9b1e7 Mon Sep 17 00:00:00 2001 From: ocrampal Date: Sun, 31 May 2026 13:39:13 +0200 Subject: [PATCH] Update presynapse.md --- elements/neuron/presynapse.md | 94 +++++++++++++++++------------------ 1 file changed, 47 insertions(+), 47 deletions(-) diff --git a/elements/neuron/presynapse.md b/elements/neuron/presynapse.md index 60950f1..39aaf63 100644 --- a/elements/neuron/presynapse.md +++ b/elements/neuron/presynapse.md @@ -42,8 +42,8 @@ PRESYNAPSE instantiation: # Context - *TryTunUpPreVcgg: CONTEXT [] - *TryTunDownPreVcgg: CONTEXT [] + *VcggPreActiveIncrease: CONTEXT [] + *VcggPreActiveDecrease: CONTEXT [] # Tub _Ca2: TUB [ full: 60x, active: 30x, empty: 0x ] @@ -358,58 +358,58 @@ TUNE_PRE_VGCC snippet: # *TunePossible - @: CONTEXTOR [ snippet: CheckVgccPreTun, rf: active 60x ] + @: CONTEXTOR [ snippet: VgccPreTunCheck, rf: active 60x ] - # *TryTunUpPreVcgg - @: ACCUMULATOR [ snippet: PossibleUpPreVgccTun, rf:active 10x ] + # *VcggPreActiveIncrease + @: ACCUMULATOR [ snippet: VcggPreActiveIncrease, rf:active 10x ] - # *TryTunDownPreVcgg - @: ACCUMULATOR [ snippet: PossibleDownPreVgccTun, rf:active 10x ] + # *VcggPreActiveDecrease + @: ACCUMULATOR [ snippet: VcggPreActiveDecrease, rf:active 10x ] ``` #### *TunePossible -##### CheckVgccPreTun +##### VgccPreTunCheck Qui controlliamo che ci siano le condizioni per aumentare o diminuire la quantita' di VGCC ```Gen -CheckVgccPreTun +VgccPreTunCheck type contextor in_context: *TunePossible condition: _CaTraceHigh fullness - out_context: *TryTunUpPreVcgg + out_context: *VcggPreActiveIncrease condition: _CaTraceLow fullness - out_context: *TryTunDownPreVcgg + out_context: *VcggPreActiveDecrease ``` -##### *TryTunUpPreVcgg +##### *VcggPreActiveIncrease -###### PossibleUpPreVgccTun +###### VcggPreActiveIncrease ```Gen -PossibleUpPreVgccTun +VcggPreActiveIncrease type: accumulator - in_context: *TryTunUpPreVcgg + in_context: *VcggPreActiveIncrease hypothesis: action: trace: ``` -##### *TryTunDownPreVcgg +##### *VcggPreActiveDecrease -###### PossibleDownPreVgccTun +###### VcggPreActiveDecrease ```Gen -PossibleDownPreVgccTun +VcggPreActiveDecrease type: accumulator - in_context: *TryTunDownPreVcgg + in_context: *VcggPreActiveDecrease hypothesis: action: @@ -428,16 +428,16 @@ DEV_PRE_TUBS snippet: # *fixed - @: CONTEXTOR [ snippet: CheckDevCa2Pre, rf: active 60x ] - *DecreaseCa2Full - @: ACCUMULATOR [ snippet: DecreaseCa2Full, rf: active 10x ] - *IncreaseCa2Full - @: ACCUMULATOR [ snippet: IncreaseCa2Full, rf: active 10x ] + @: CONTEXTOR [ snippet: Ca2PreDevCheck, rf: active 60x ] + *Ca2PreFullDecrease + @: ACCUMULATOR [ snippet: Ca2PreFullDecrease, rf: active 10x ] + *Ca2PreFullIncrease + @: ACCUMULATOR [ snippet: Ca2PreFullIncrease, rf: active 10x ] # *fixed - @: CONTEXTOR [ snippet: CheckDevRrpPre, rf: active 60x ] - *DecreaseRrpFull - @: ACCUMULATOR [ snippet: DecreaseRrpFull, rf: active 10x ] + @: CONTEXTOR [ snippet: RrpPreDevCheck, rf: active 60x ] + *RrpPreFullDecrease + @: ACCUMULATOR [ snippet: RrpPreFullDecrease, rf: active 10x ] *IncreaseRrpFull @: ACCUMULATOR [ snippet: IncreaseRrpFull, rf: active 10x ] @@ -445,50 +445,50 @@ DEV_PRE_TUBS #### *fixed -##### CheckDevCa2Pre +##### Ca2PreDevCheck ***Tens Milliseconds Time Scale*** ```Gen -CheckDevCa2Pre +Ca2PreDevCheck type: contextor in_context: *fixed condition: ( empty ) - out_context: *DecreaseCa2Full + out_context: *Ca2PreFullDecrease condition: ( full) - out_context: *IncreaseCa2Full + out_context: *Ca2PreFullIncrease ``` -##### *DecreaseCa2Full +##### *Ca2PreFullDecrease -###### DecreaseCa2Full +###### Ca2PreFullDecrease ```Gen DecreasePreCa2Full type: accumulator - in_context: *DecreaseCa2Full + in_context: *Ca2PreFullDecrease hypothesis: NOT ( full ) AND NOT ( empty ) action: [ increase, decrease] trace: None ``` -##### *IncreaseCa2Full +##### *Ca2PreFullIncrease -###### IncreaseCa2Full +###### Ca2PreFullIncrease ```Gen IncreasePreCa2Full type: accumulator - in_context: *IncreaseCa2Full + in_context: *Ca2PreFullIncrease hypothesis: NOT ( full ) AND NOT ( empty ) action: [ increase, decrease] @@ -497,50 +497,50 @@ IncreasePreCa2Full #### *fixed -##### CheckDevRrpPre +##### RrpPreDevCheck ***Tens Milliseconds Time Scale*** ```Gen -CheckDevRrpPre +RrpPreDevCheck type: contextor in_context: *fixed condition: ( empty ) - out_context: *DecreaseRrpFull + out_context: *RrpPreFullDecrease condition: ( full) out_context: *IncreaseRrpFull ``` -##### *DecreaseRrpFull +##### *RrpPreFullDecrease -###### DecreaseRrpFull +###### RrpPreFullDecrease ```Gen DecreasePreRrpFull type: accumulator - in_context: *DecreaseCa2Full + in_context: *RrpPreFullDecrease hypothesis: NOT ( full ) AND NOT ( empty ) action: [ increase, decrease] trace: None ``` -##### *IncreaseCa2Full +##### *RrpPreFullIncrease -###### IncreaseCa2Full +###### RrpPreFullIncrease ```Gen -IncreasePreCa2Full +RrpPreFullIncrease type: accumulator - in_context: *IncreaseCa2Full + in_context: *RrpPreFullIncrease hypothesis: NOT ( full ) AND NOT ( empty ) action: [ increase, decrease]