VPost, VDB messo a posto

This commit is contained in:
2026-04-07 17:41:08 +02:00
parent 61dc2e7836
commit 2a05917253
2 changed files with 43 additions and 41 deletions
+31 -31
View File
@@ -88,7 +88,7 @@ Container: BEH-BD
# developed_by: DEV-BD-BEH-POST-TUB from DEV-N
tub_local:
- CaBD ( full: 50x, active: 0x, empty: 10x )
- VPost ( full: 50x, active: 0x, empty: 10x )
tub_intricated:
- VSoma ( contained_by: BEH-SOMA )
@@ -97,81 +97,81 @@ Container: BEH-BD
### ms: behaviors BD
#### CheckCaDB:Context
#### CheckVPost:Context
Contestualizziamo in maniera Fixed?
```Gen
context: CheckCaDB
context: CheckVPost
contained_by: BEH-BD
in_context: Fixed
rf: ( active: 60x )
condition: (CaBD fullness)
out_context: CaMax
condition: (VPost fullness)
out_context: VPostMax
condition: (CaBD mediumness)
out_context: CaMedium
condition: (VPost mediumness)
out_context: VPostMedium
condition: (CaBD emptiness)
out_context: CaLow
condition: (VPost emptiness)
out_context: VPostLow
```
#### VSomaAddMax: Episode
#### VDBMax: Episode
```Gen
episode: VSomaAddMax
episode: VDBMax
contained_by: BEH-BD
in_context: CaMax
in_context: VPostMax
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
hypothesis: NOT (VDB full)
action: [VDB increase]
trace:
```
#### VSomaAddMed: Episode
#### VDBMed: Episode
```Gen
episode: VSomaAddMed
episode: VDBMed
contained_by: BEH-BD
in_context: CaMed
in_context: VPostMed
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
hypothesis: NOT (VDB full)
action: [VDB increase]
trace:
```
#### VSomaAddLow: Episode
#### VDBLow: Episode
```Gen
episode: VSomaAddLow
episode: VDBLow
contained_by: BEH-BD
in_context: CaLow
in_context: VPostLow
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
hypothesis: NOT (VDB full)
action: [VDB increase]
trace:
```
#### VSomaClearance: Episode
#### VDBlearance: Episode
Qui facciamo il clearance del VSoma. Lo facciamo in questo modo perche' abbiamo semplificato quello che succede fra POST e BD. In teoria il VPOST dovrebbe far entrare aprire VCGG del BD e far entrare CaBD. Qui abbiamo semplificato e trattiamo VSoma come se fossero blocchi, non la conseguenza di CaBD.
Qui facciamo il clearance del VDB. Lo facciamo in questo modo perche' abbiamo semplificato quello che succede fra POST e BD. In teoria il VPOST dovrebbe far entrare aprire VCGG del BD e far entrare CaBD. Qui abbiamo semplificato e trattiamo VDB come se fossero blocchi, non la conseguenza di CaBD.
```Gen
episode: VSomaAddLow
episode: VDBClearance
contained_by: BEH-BD
in_context: CaLow
in_context: Fixed
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
hypothesis: NOT (VDB empty)
action: [VDB decrease]
trace:
```
```