Update presynapse.md
This commit is contained in:
@@ -150,21 +150,21 @@ TRACE
|
|||||||
|
|
||||||
// Fast Traces
|
// Fast Traces
|
||||||
|
|
||||||
void: INCLUDE [ accumulator: TracesAccLow, event: 3x, cost: 3x, context: NOT *AP ] {
|
void: INSTANTIATE [ accumulator: TracesAccLow, event: 3x, cost: 3x, context: NOT *AP ] {
|
||||||
hypothesis: _Ca2 emptiness
|
hypothesis: _Ca2 emptiness
|
||||||
action: [ _CaTraceLow increase ]
|
action: [ _CaTraceLow increase ]
|
||||||
trace: None
|
trace: None
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void: INCLUDE [ accumulator: TracesAccMedium, event: 6x, cost: 3x, context: NOT *AP ] {
|
void: INSTANTIATE [ accumulator: TracesAccMedium, event: 6x, cost: 3x, context: NOT *AP ] {
|
||||||
hypothesis: _Ca2 mediumness
|
hypothesis: _Ca2 mediumness
|
||||||
action: [ _CaTraceMed increase ]
|
action: [ _CaTraceMed increase ]
|
||||||
trace: None
|
trace: None
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void: INCLUDE [ accumulator: TracesAccHigh, event: 10x, cost: 3x, context: NOT *AP ] {
|
void: INSTANTIATE [ accumulator: TracesAccHigh, event: 10x, cost: 3x, context: NOT *AP ] {
|
||||||
hypothesis: _Ca2 fullness
|
hypothesis: _Ca2 fullness
|
||||||
action: [ _CaTraceHigh increase ]
|
action: [ _CaTraceHigh increase ]
|
||||||
trace: None
|
trace: None
|
||||||
@@ -177,60 +177,38 @@ TRACE
|
|||||||
```Gen
|
```Gen
|
||||||
MAIN
|
MAIN
|
||||||
|
|
||||||
type: container
|
// eCB Clearance
|
||||||
|
|
||||||
|
void: INSTANTIATE [ accumulator: eCBClearenceMedium, event: 24x, cost: 3x, context: NOT *AP ] {
|
||||||
|
hypothesis: NOT _eCB empty
|
||||||
|
action: [ _eCB decrease ]
|
||||||
|
trace: None
|
||||||
|
}
|
||||||
|
|
||||||
within_scope: !DAY
|
void: INSTANTIATE [ accumulator: eCBClearenceLow, event: 48x, cost: 3x, context: NOT *AP ] {
|
||||||
|
hypothesis: NOT _eCB empty
|
||||||
|
action: [ _eCB decrease ]
|
||||||
|
trace: None
|
||||||
|
}
|
||||||
|
|
||||||
// snippet: NOT *AP
|
// Fast traces Clearance
|
||||||
void: INCLUDE [ accumulator: eCBClearenceMedium, event: act 24x, cost: act 3x ]
|
|
||||||
void: INCLUDE [ accumulator: eCBClearenceLow, event: act 48x, cost: act 3x ]
|
void: INSTANTIATE [ accumulator: TracesClearance, event: 30x, cost: 3x, context: NOT *AP ] {
|
||||||
|
hypothesis: NOT _CaTraceHigh empty
|
||||||
|
action: [ _CaTRaceHigh decrease ]
|
||||||
|
trace: None
|
||||||
|
|
||||||
|
hypothesis: NOT _CaTraceMedium empty
|
||||||
|
action: [ _CaTRaceMedium decrease ]
|
||||||
|
trace: None
|
||||||
|
|
||||||
|
hypothesis: NOT _CaTraceLow empty
|
||||||
|
action: [ _CaTRaceLow decrease ]
|
||||||
|
trace: None
|
||||||
|
}
|
||||||
|
|
||||||
void: INCLUDE [ accumulator: TracesClearance, event: act 30x, cost: act 3x ]
|
|
||||||
```
|
```
|
||||||
|
|
||||||
#### NOT *AP
|
|
||||||
|
|
||||||
##### eCBClearance
|
|
||||||
|
|
||||||
eCB dipende da POST. Tende a modulare l'entrata di Ca2 degli VGCC.
|
|
||||||
|
|
||||||
Qui non facciamo un flush di eCB, riduciamo ogni mezzo secondo (context) di un event di questo episodio.
|
|
||||||
|
|
||||||
```Gen
|
|
||||||
eCBClearance: ( act: 24x ) # Slow
|
|
||||||
type: accumulator
|
|
||||||
|
|
||||||
in_context: NOT *AP
|
|
||||||
|
|
||||||
hypothesis: NOT _eCB empty
|
|
||||||
action: [ _eCB decrease ]
|
|
||||||
trace: None
|
|
||||||
```
|
|
||||||
|
|
||||||
##### Ca2TracesClearance
|
|
||||||
|
|
||||||
Qui facciamo un flush di CaTraceX. Deve essere fatto a valle del tuning.
|
|
||||||
|
|
||||||
```Gen
|
|
||||||
Ca2TracesClearance
|
|
||||||
type: accumulator
|
|
||||||
|
|
||||||
in_context: NOT *TunPossible
|
|
||||||
|
|
||||||
hypothesis: NOT _CaTraceHigh empty
|
|
||||||
action: [ _CaTRaceHigh decrease ]
|
|
||||||
trace: None
|
|
||||||
|
|
||||||
hypothesis: NOT _CaTraceMedium empty
|
|
||||||
action: [ _CaTRaceMedium decrease ]
|
|
||||||
trace: None
|
|
||||||
|
|
||||||
hypothesis: NOT _CaTraceLow empty
|
|
||||||
action: [ _CaTRaceLow decrease ]
|
|
||||||
trace: None
|
|
||||||
```
|
|
||||||
|
|
||||||
|
|
||||||
## RECOVER
|
## RECOVER
|
||||||
|
|
||||||
```Gen
|
```Gen
|
||||||
|
|||||||
Reference in New Issue
Block a user