VSoma add e clear

This commit is contained in:
2026-04-06 16:56:51 +02:00
parent 1c7dcf3880
commit 3a257be5fb
+85 -1
View File
@@ -64,7 +64,7 @@ The only behavior we model:
tau_dend is the membrane time constant of the branch tau_dend is the membrane time constant of the branch
- V_dend passed to soma each ms (read externally) - V_dend passed to soma each ms (read externally)
— seconds: — secs:
- nothing in the simplified model - nothing in the simplified model
@@ -90,4 +90,88 @@ Container: BEH-BD
tub_local: tub_local:
- CaBD ( full: 50x, active: 0x, empty: 10x ) - CaBD ( full: 50x, active: 0x, empty: 10x )
tub_intricated:
- VSoma ( contained_by: BEH-SOMA )
``` ```
### ms: behaviors BD
#### CheckCaDB:Context
Contestualizziamo in maniera Fixed?
```Gen
context: CheckCaDB
contained_by: BEH-BD
in_context: Fixed
rf: ( active: 60x )
condition: (CaBD fullness)
out_context: CaMax
condition: (CaBD mediumness)
out_context: CaMedium
condition: (CaBD emptiness)
out_context: CaLow
```
#### VSomaAddMax: Episode
```Gen
episode: VSomaAddMax
contained_by: BEH-BD
in_context: CaMax
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
trace:
```
#### VSomaAddMed: Episode
```Gen
episode: VSomaAddMed
contained_by: BEH-BD
in_context: CaMed
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
trace:
```
#### VSomaAddLow: Episode
```Gen
episode: VSomaAddLow
contained_by: BEH-BD
in_context: CaLow
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
trace:
```
#### VSomaClearance: 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.
```Gen
episode: VSomaAddLow
contained_by: BEH-BD
in_context: CaLow
rf: ( active: 2x )
hypothesis: NOT (VSoma full)
action: [VSoma increase]
trace:
```