RpShuttle

This commit is contained in:
2026-03-29 17:25:27 +02:00
parent eddce6ddc1
commit 9748dfc1ac
+36 -19
View File
@@ -409,14 +409,14 @@ episode: CaTracesAccumulationSlow
Contestualizziamo in maniera Fixed ogni mezzo secondo? Contestualizziamo in maniera Fixed ogni mezzo secondo?
```Gen ```Gen
context: SeContext context: SecContext
contained_by: BEH-PRE contained_by: BEH-PRE
in_context: Fixed in_context: Fixed
rf: ( active: 600x ) rf: ( active: 600x )
condition: NOT (rp empty) condition: NOT (rp empty) AND NOT (RRP full)
out_context: RPNotEmpty out_context: RPShuttle
condition: NOT (CaTrace empty) condition: NOT (CaTrace empty)
out_context: CaTracesNotEmpty out_context: CaTracesNotEmpty
@@ -467,57 +467,74 @@ This happens in the seconds loop, once per second.
##### RP->RRPSlow: Episode ##### 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 Rate: 0.00 0.25
- Supply available: RP medium
- Headroom available: RRP medium
```Gen ```Gen
episode: RP->RRPSlow episode: RP->RRPSlow
contained_by: BEH-PRE contained_by: BEH-PRE
in_context: RPNotEmpty in_context: RPShuttle
rf: ( active: 24x ) # Slow 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] action: [RP decrease, RRP increase]
trace: None trace: None
``` ```
##### RP->RRPFast: Episode ##### RP->RRPFast: Episode
Recruitment high: 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.
- Recent activity has primed the machinery: CaTrace medium
- Supply Available: RP medium or full
- Headroom available: RRP medium or
Rate: 1.25 1.94
```Gen ```Gen
episode: RP->RRPFast episode: RP->RRPFast
contained_by: BEH-PRE contained_by: BEH-PRE
in_context: RPNotEmpty in_context: RPShuttle
rf: ( active: 24x ) # Fast rf: ( active: 24x ) # Fast
hypothesis: hypothesis: (CaTrace nearFull) AND ((RP medium) OR (RP nearFull)) AND (RRP medium)
action: [RP decrease, RRP increase] action: [RP decrease, RRP increase]
trace: None trace: None
``` ```
##### RP->RRPMaximal: Episode ##### RP->RRPMaximal: Episode
... The "Total Recovery" State. All systems are at their theoretical peak for speed.
Rate: 2.50 5.00
```Gen ```Gen
episode: RP->RRPMaximal episode: RP->RRPMaximal
contained_by: BEH-PRE contained_by: BEH-PRE
in_context: RPNotEmpty in_context: RPShuttle
rf: ( active: 24x ) # Maximal rf: ( active: 24x ) # Maximal
hypothesis: hypothesis: (CaTrace nearFull) AND (RP nearFull) AND RRP nearEmpty
action: [RP decrease, RRP increase] action: [RP decrease, RRP increase]
trace: None trace: None