Update presynapse.md

This commit is contained in:
2026-05-31 13:39:13 +02:00
parent 00821899b2
commit 075e1459ce
+47 -47
View File
@@ -42,8 +42,8 @@ PRESYNAPSE
instantiation: instantiation:
# Context # Context
*TryTunUpPreVcgg: CONTEXT [] *VcggPreActiveIncrease: CONTEXT []
*TryTunDownPreVcgg: CONTEXT [] *VcggPreActiveDecrease: CONTEXT []
# Tub # Tub
_Ca2: TUB [ full: 60x, active: 30x, empty: 0x ] _Ca2: TUB [ full: 60x, active: 30x, empty: 0x ]
@@ -358,58 +358,58 @@ TUNE_PRE_VGCC
snippet: snippet:
# *TunePossible # *TunePossible
@: CONTEXTOR [ snippet: CheckVgccPreTun, rf: active 60x ] @: CONTEXTOR [ snippet: VgccPreTunCheck, rf: active 60x ]
# *TryTunUpPreVcgg # *VcggPreActiveIncrease
@: ACCUMULATOR [ snippet: PossibleUpPreVgccTun, rf:active 10x ] @: ACCUMULATOR [ snippet: VcggPreActiveIncrease, rf:active 10x ]
# *TryTunDownPreVcgg # *VcggPreActiveDecrease
@: ACCUMULATOR [ snippet: PossibleDownPreVgccTun, rf:active 10x ] @: ACCUMULATOR [ snippet: VcggPreActiveDecrease, rf:active 10x ]
``` ```
#### *TunePossible #### *TunePossible
##### CheckVgccPreTun ##### VgccPreTunCheck
Qui controlliamo che ci siano le condizioni per aumentare o diminuire la quantita' di VGCC Qui controlliamo che ci siano le condizioni per aumentare o diminuire la quantita' di VGCC
```Gen ```Gen
CheckVgccPreTun VgccPreTunCheck
type contextor type contextor
in_context: *TunePossible in_context: *TunePossible
condition: _CaTraceHigh fullness condition: _CaTraceHigh fullness
out_context: *TryTunUpPreVcgg out_context: *VcggPreActiveIncrease
condition: _CaTraceLow fullness condition: _CaTraceLow fullness
out_context: *TryTunDownPreVcgg out_context: *VcggPreActiveDecrease
``` ```
##### *TryTunUpPreVcgg ##### *VcggPreActiveIncrease
###### PossibleUpPreVgccTun ###### VcggPreActiveIncrease
```Gen ```Gen
PossibleUpPreVgccTun VcggPreActiveIncrease
type: accumulator type: accumulator
in_context: *TryTunUpPreVcgg in_context: *VcggPreActiveIncrease
hypothesis: hypothesis:
action: action:
trace: trace:
``` ```
##### *TryTunDownPreVcgg ##### *VcggPreActiveDecrease
###### PossibleDownPreVgccTun ###### VcggPreActiveDecrease
```Gen ```Gen
PossibleDownPreVgccTun VcggPreActiveDecrease
type: accumulator type: accumulator
in_context: *TryTunDownPreVcgg in_context: *VcggPreActiveDecrease
hypothesis: hypothesis:
action: action:
@@ -428,16 +428,16 @@ DEV_PRE_TUBS
snippet: snippet:
# *fixed # *fixed
@: CONTEXTOR [ snippet: CheckDevCa2Pre, rf: active 60x ] @: CONTEXTOR [ snippet: Ca2PreDevCheck, rf: active 60x ]
*DecreaseCa2Full *Ca2PreFullDecrease
@: ACCUMULATOR [ snippet: DecreaseCa2Full, rf: active 10x ] @: ACCUMULATOR [ snippet: Ca2PreFullDecrease, rf: active 10x ]
*IncreaseCa2Full *Ca2PreFullIncrease
@: ACCUMULATOR [ snippet: IncreaseCa2Full, rf: active 10x ] @: ACCUMULATOR [ snippet: Ca2PreFullIncrease, rf: active 10x ]
# *fixed # *fixed
@: CONTEXTOR [ snippet: CheckDevRrpPre, rf: active 60x ] @: CONTEXTOR [ snippet: RrpPreDevCheck, rf: active 60x ]
*DecreaseRrpFull *RrpPreFullDecrease
@: ACCUMULATOR [ snippet: DecreaseRrpFull, rf: active 10x ] @: ACCUMULATOR [ snippet: RrpPreFullDecrease, rf: active 10x ]
*IncreaseRrpFull *IncreaseRrpFull
@: ACCUMULATOR [ snippet: IncreaseRrpFull, rf: active 10x ] @: ACCUMULATOR [ snippet: IncreaseRrpFull, rf: active 10x ]
@@ -445,50 +445,50 @@ DEV_PRE_TUBS
#### *fixed #### *fixed
##### CheckDevCa2Pre ##### Ca2PreDevCheck
***Tens Milliseconds Time Scale*** ***Tens Milliseconds Time Scale***
```Gen ```Gen
CheckDevCa2Pre Ca2PreDevCheck
type: contextor type: contextor
in_context: *fixed in_context: *fixed
condition: ( empty ) condition: ( empty )
out_context: *DecreaseCa2Full out_context: *Ca2PreFullDecrease
condition: ( full) condition: ( full)
out_context: *IncreaseCa2Full out_context: *Ca2PreFullIncrease
``` ```
##### *DecreaseCa2Full ##### *Ca2PreFullDecrease
###### DecreaseCa2Full ###### Ca2PreFullDecrease
```Gen ```Gen
DecreasePreCa2Full DecreasePreCa2Full
type: accumulator type: accumulator
in_context: *DecreaseCa2Full in_context: *Ca2PreFullDecrease
hypothesis: NOT ( full ) AND NOT ( empty ) hypothesis: NOT ( full ) AND NOT ( empty )
action: [ increase, decrease] action: [ increase, decrease]
trace: None trace: None
``` ```
##### *IncreaseCa2Full ##### *Ca2PreFullIncrease
###### IncreaseCa2Full ###### Ca2PreFullIncrease
```Gen ```Gen
IncreasePreCa2Full IncreasePreCa2Full
type: accumulator type: accumulator
in_context: *IncreaseCa2Full in_context: *Ca2PreFullIncrease
hypothesis: NOT ( full ) AND NOT ( empty ) hypothesis: NOT ( full ) AND NOT ( empty )
action: [ increase, decrease] action: [ increase, decrease]
@@ -497,50 +497,50 @@ IncreasePreCa2Full
#### *fixed #### *fixed
##### CheckDevRrpPre ##### RrpPreDevCheck
***Tens Milliseconds Time Scale*** ***Tens Milliseconds Time Scale***
```Gen ```Gen
CheckDevRrpPre RrpPreDevCheck
type: contextor type: contextor
in_context: *fixed in_context: *fixed
condition: ( empty ) condition: ( empty )
out_context: *DecreaseRrpFull out_context: *RrpPreFullDecrease
condition: ( full) condition: ( full)
out_context: *IncreaseRrpFull out_context: *IncreaseRrpFull
``` ```
##### *DecreaseRrpFull ##### *RrpPreFullDecrease
###### DecreaseRrpFull ###### RrpPreFullDecrease
```Gen ```Gen
DecreasePreRrpFull DecreasePreRrpFull
type: accumulator type: accumulator
in_context: *DecreaseCa2Full in_context: *RrpPreFullDecrease
hypothesis: NOT ( full ) AND NOT ( empty ) hypothesis: NOT ( full ) AND NOT ( empty )
action: [ increase, decrease] action: [ increase, decrease]
trace: None trace: None
``` ```
##### *IncreaseCa2Full ##### *RrpPreFullIncrease
###### IncreaseCa2Full ###### RrpPreFullIncrease
```Gen ```Gen
IncreasePreCa2Full RrpPreFullIncrease
type: accumulator type: accumulator
in_context: *IncreaseCa2Full in_context: *RrpPreFullIncrease
hypothesis: NOT ( full ) AND NOT ( empty ) hypothesis: NOT ( full ) AND NOT ( empty )
action: [ increase, decrease] action: [ increase, decrease]