diff --git a/elements/neuron/presynapse.md b/elements/neuron/presynapse.md index 7015bc5..ffcdaba 100644 --- a/elements/neuron/presynapse.md +++ b/elements/neuron/presynapse.md @@ -150,21 +150,21 @@ TRACE // 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 action: [ _CaTraceLow increase ] 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 action: [ _CaTraceMed increase ] 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 action: [ _CaTraceHigh increase ] trace: None @@ -177,60 +177,38 @@ TRACE ```Gen 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 - void: INCLUDE [ accumulator: eCBClearenceMedium, event: act 24x, cost: act 3x ] - void: INCLUDE [ accumulator: eCBClearenceLow, event: act 48x, cost: act 3x ] + // Fast traces Clearance + + 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 ```Gen