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:
# 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]