diff --git a/neuron/BEH-BD.md b/neuron/BEH-BD.md index b798ce4..bd601cb 100644 --- a/neuron/BEH-BD.md +++ b/neuron/BEH-BD.md @@ -64,7 +64,7 @@ The only behavior we model: tau_dend is the membrane time constant of the branch - V_dend passed to soma each ms (read externally) -— seconds: +— secs: - nothing in the simplified model @@ -90,4 +90,88 @@ Container: BEH-BD tub_local: - 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: +``` \ No newline at end of file