fix shuttle

This commit is contained in:
2026-03-29 18:16:37 +02:00
parent 9748dfc1ac
commit 43022d7c75
2 changed files with 11 additions and 10 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 107 KiB

+11 -10
View File
@@ -463,8 +463,6 @@ episode: CaTracesClearance
This happens in the seconds loop, once per second.
![nt-release.png](.attachments/RRP-RP-shuttle.png)
##### RP->RRPSlow: Episode
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.
@@ -476,7 +474,7 @@ episode: RP->RRPSlow
contained_by: BEH-PRE
in_context: RPShuttle
rf: ( active: 24x ) # Slow
rf: ( active: 48x ) # Slow
hypothesis: (CaTrace nearEmpty) OR (RP nearEmpty) OR (RRP nearFull)
action: [RP decrease, RRP increase]
@@ -496,9 +494,10 @@ episode: RP->RRPModerate
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))
hypothesis: ((CaTrace medium) AND (RP medium) AND (RRP medium)) OR
((CaTrace nearFull) AND (RP medium) AND (RRP medium)) OR # signal boost
((CaTrace medium) AND (RP nearFull) AND (RRP medium)) OR # supply boost
((CaTrace medium) AND (RP medium) AND (RRP nearEmpty)) # vacancy boost
action: [RP decrease, RRP increase]
trace: None
```
@@ -514,9 +513,11 @@ episode: RP->RRPFast
contained_by: BEH-PRE
in_context: RPShuttle
rf: ( active: 24x ) # Fast
rf: ( active: 12x ) # Fast
hypothesis: (CaTrace nearFull) AND ((RP medium) OR (RP nearFull)) AND (RRP medium)
hypothesis: ((CaTrace nearFull) AND (RP nearFull) AND (RRP medium)) OR # signal + supply
((CaTrace nearFull) AND (RP medium) AND (RRP nearEmpty)) OR # signal + vacancy
((CaTrace medium) AND (RP nearFull) AND (RRP nearEmpty)) # supply + vacancy
action: [RP decrease, RRP increase]
trace: None
```
@@ -532,9 +533,9 @@ episode: RP->RRPMaximal
contained_by: BEH-PRE
in_context: RPShuttle
rf: ( active: 24x ) # Maximal
rf: ( active: 6x ) # Maximal
hypothesis: (CaTrace nearFull) AND (RP nearFull) AND RRP nearEmpty
hypothesis: (CaTrace nearFull) AND (RP nearFull) AND RRP (nearEmpty)
action: [RP decrease, RRP increase]
trace: None