diff --git a/neuron/BEH-AXO.md b/neuron/BEH-AXO.md index 6da2863..20ab062 100644 --- a/neuron/BEH-AXO.md +++ b/neuron/BEH-AXO.md @@ -409,14 +409,14 @@ episode: CaTracesAccumulationSlow Contestualizziamo in maniera Fixed ogni mezzo secondo? ```Gen -context: SeContext +context: SecContext contained_by: BEH-PRE in_context: Fixed rf: ( active: 600x ) - condition: NOT (rp empty) - out_context: RPNotEmpty + condition: NOT (rp empty) AND NOT (RRP full) + out_context: RPShuttle condition: NOT (CaTrace empty) out_context: CaTracesNotEmpty @@ -467,57 +467,74 @@ This happens in the seconds loop, once per second. ##### RP->RRPSlow: Episode -Recruitment machinery at base speed: +The "Hard Bottleneck" State. Recruitment is throttled by a lack of signal, a lack of supply, or a lack of space. If even one of these "Near-Stop" conditions is met, the rate cannot exceed "Slow," regardless of the other two conditions. -- Synapse quiet: CaTrace empty -- Supply available: RP medium -- Headroom available: RRP medium +Rate: 0.00 – 0.25 ```Gen episode: RP->RRPSlow contained_by: BEH-PRE - in_context: RPNotEmpty + in_context: RPShuttle rf: ( active: 24x ) # Slow - hypothesis: (RRP medium) AND (RP Medium) AND (CaTrace empty) + hypothesis: (CaTrace nearEmpty) OR (RP nearEmpty) OR (RRP nearFull) + action: [RP decrease, RRP increase] + trace: None +``` + +##### RP->RRPModerate: Episode + +The "Sub-Optimal" State. The machinery is working, but it's held back by partial limitations. This covers cases where the signal is steady but the "piston" isn't firing at full speed, or where a high vacancy in the RRP (nearEmpty) forces a low signal to work a bit harder. + +Rate: 0.50 – 0.97 + +```Gen +episode: RP->RRPModerate + contained_by: BEH-PRE + + in_context: RPShuttle + rf: ( active: 24x ) # Slow + + hypothesis: ((RRP medium) OR (RRP nearEmpty)) AND + ((CaTrace medium) AND (RP medium)) OR + ((CaTrace nearEmpty) AND (RP nearFull) AND (RRP nearEmpty)) action: [RP decrease, RRP increase] trace: None ``` ##### RP->RRPFast: Episode -Recruitment high: - -- Recent activity has primed the machinery: CaTrace medium -- Supply Available: RP medium or full -- Headroom available: RRP medium or +The "High Performance" State. Multiple systems are optimized, but one is still at a "Medium" level. This represents an active synapse that hasn't reached its absolute peak because either the supply is only 50% or the RRP isn't empty enough to create that "maximal vacuum" pull. +Rate: 1.25 – 1.94 ```Gen episode: RP->RRPFast contained_by: BEH-PRE - in_context: RPNotEmpty + in_context: RPShuttle rf: ( active: 24x ) # Fast - hypothesis: + hypothesis: (CaTrace nearFull) AND ((RP medium) OR (RP nearFull)) AND (RRP medium) action: [RP decrease, RRP increase] trace: None ``` ##### RP->RRPMaximal: Episode -... +The "Total Recovery" State. All systems are at their theoretical peak for speed. + +Rate: 2.50 – 5.00 ```Gen episode: RP->RRPMaximal contained_by: BEH-PRE - in_context: RPNotEmpty + in_context: RPShuttle rf: ( active: 24x ) # Maximal - hypothesis: + hypothesis: (CaTrace nearFull) AND (RP nearFull) AND RRP nearEmpty action: [RP decrease, RRP increase] trace: None